Ticks
-
How can I measure the body of the candle in ticks and create a condition?
-
@juan-manuel-quiñonero https://fxdreema.com/shared/tTFOAkncc (candle greater than 100 Ticks)
-
Do you want to say "points"? Because the candle's body is usually measured in pips that can be converted to points.

-
@josecortesllobat How do I convert it into points instead of pip?
-
Not sure if I understand you correctly but isnt a point a fraction of a pip, ie 200 points is the same as 20 pips? so if you wanted to say 125 points it would be 12.5 pips?
-
@clintk is right. To convert "Pips" to "Points" you just have to multiply by 10.
20pips * 10points/pips = 200 points
Probably what you want is to convert "Pips" to "Price fraction". There will be an easiest way for sure but this works for me

20pips * Pointsize (0.0001 or 0.01) = 0.0020 or 0.2 (dpending on the pair and broker's digit precision)

-
@josecortesllobat Thank you