Is there a way to extract the value of atr in pips even if the pair has 4 digits after the point as eurusd or three as usdjpy?
-
Is there a way to extract the value of atr in pips even if the pair has 4 digits after the point as eurusd or three as usdjpy?
-
@juanitomejiar The ATR value is already a distance in pips. Just store the value of the ATR into a variable and you will get it independently of your broker's digits.
-
is that it generates very small values, I have to multiply it by 1000 or by 100 depending on the pair, is there a way to do this?
-
@juanitomejiar That number is the exact number of pips for that symbol. If you multuply it for any number you will be distorting its value. Are you using it on forex symbols or non forex symbols? If the second case you should take a look at the pip size rules.
-
is that I want to use it as a value for stop loss and takeprofit I tried it, and the value is very small so it is a number after the point, it is a very small decimal number, but multiplying it by 1000 it solved, but for usdjpy I I have to multiply it by 100
-
in the bottom of the block is a line called adjust, do the multiplication there. Example " *100 " is all you need to multiply * 100. Nothing extra required
-
@jsauter86 Ok. Good for you!

-
Thank you Sir!