Forums › ProRealTime English forum › ProOrder support › Heikin Ashi candlestick body and moving average condition › Reply To: Heikin Ashi candlestick body and moving average condition
09/21/2018 at 10:31 AM
#81012
1 2 |
Green = xClose>xOpen harange = abs(xclose-xopen) |
“Green” is a condition showing when the current candle is above the previous candle
“harange” is calculating the abs value of an evolution
So when you write:
1 |
harange>harange[1] |
It returns “Green” but on previous candles right?