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).
Script de código abierto

Siguiendo el verdadero espíritu de TradingView, el autor de este script lo ha publicado en código abierto, para que los traders puedan entenderlo y verificarlo. ¡Un hurra por el autor! Puede utilizarlo de forma gratuita, aunque si vuelve a utilizar este código en una publicación, debe cumplir con lo establecido en las Normas internas. Puede añadir este script a sus favoritos y usarlo en un gráfico.

Exención de responsabilidad

La información y las publicaciones que ofrecemos, no implican ni constituyen un asesoramiento financiero, ni de inversión, trading o cualquier otro tipo de consejo o recomendación emitida o respaldada por TradingView. Puede obtener información adicional en las Condiciones de uso.

¿Quiere utilizar este script en un gráfico?
// 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")