Hello,
I’ve been trying to code the difference between the high and low of the current candle expressed as a percentage of the opening price of the candle
Example: Open = 69.04, High = 70.52, Low = 68.99 Difference = 1.53
Difference (1.53) as percentage of Open (69.04) = 2.22%
Would be very grateful of any help
Thanks
Must be something like:
result = (range/open)*100
return result
Thanks Nicolas, easy when you know how