How to Calculate Pip Value for Different Digits Pair
-
How to calculate pip value from different Digits pair such as
USDJPY with 3 Digits and EURUSD with 5 Digits
For Example :USDJPY ==> Today High = 105.171 ,and Today Low = 104.523, then Today Range shall be 64.8 pip (result Multiply by 100)
EURUSD ==> Today High = 1.19195 ,and Today Low = 1.18108, then Today Range shall be 108.7 pip (Result Multiply by 10.000)How to do that? which block can we use?
-
@aeivan Easy. You can create a variable and do this for UDSJPY:

Then use a new variable for EURUSD and multiply by 10000
-
Thank you for your reply,
then how to automatically detect pair digits?
i mean how to automatically detect is it 3 digits pair or 5 digits pair?? -
@aeivan This is the way to confirm if the chart is a 3 digits symbol.

-
@l-andorrà thank you for your help
-
@aeivan You're welcome.
-
@l-andorrà there are another way to recognize it without those blocks? I mean, adjust each one the number to multiplicate: 10, * 100, 10 000?
-
-
@uriel-0 I guess so, but never tried it. I always use that block when necessary.