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).
نص برمجي مفتوح المصدر

قام مؤلف هذا النص البرمجي بنشره وجعله مفتوح المصدر، بحيث يمكن للمتداولين فهمه والتحقق منه، وهو الأمر الذي يدخل ضمن قيم TradingView. تحياتنا للمؤلف! يمكنك استخدامه مجانًا، ولكن إعادة استخدام هذا الكود في منشور تحكمه قواعد الموقع. يمكنك جعله مفضلاً لاستخدامه على الرسم البياني.

إخلاء المسؤولية

لا يُقصد بالمعلومات والمنشورات أن تكون، أو تشكل، أي نصيحة مالية أو استثمارية أو تجارية أو أنواع أخرى من النصائح أو التوصيات المقدمة أو المعتمدة من TradingView. اقرأ المزيد في شروط الاستخدام.

هل تريد استخدام هذا النص البرمجي على الرسم البياني؟
// 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")