I made this tool to measure the exact PIP range of different currency pairs in an easy to understand format.
It comes with the option to convert the PIP Values to XXX/JPY Pairs with a simple check-box.
"H" is the highest PIP movement in 377 time periods.
"N" is the EMA-377 of the PIP ranges.
"P" is the current time periods PIP moment (true range).
Open-source Skript

Ganz im Spirit von TradingView hat der Autor dieses Skripts es als Open-Source veröffentlicht, damit Trader es besser verstehen und überprüfen können. Herzlichen Glückwunsch an den Autor! Sie können es kostenlos verwenden, aber die Wiederverwendung dieses Codes in einer Veröffentlichung unterliegt den Hausregeln. Sie können es als Favoriten auswählen, um es in einem Chart zu verwenden.

Haftungsausschluss

Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.

Möchten Sie dieses Skript auf einem Chart verwenden?
// JPIPS by NVRSTPEXPLORING
// I made this tool to measure the exact pip range of different currency pairs
study(title="J-Pips", overlay=false)
JPY = input(title="XXX/JPY Instrument?", type=bool, defval=false)
pips = tr*10000
jpips = tr*100
hi = highest(JPY? jpips:pips,377)
nrm = ema(JPY? jpips:pips,377)
palette = close >= open ? green : maroon
P1= plot (JPY? jpips:pips, style=columns, trackprice=true, color=palette, title="P")
P2 = plot (hi, title="H")
P3 = plot (nrm, title="N")