Hello,
I want to place an indicator arrow on a candle bar that has retraced down 45 % from its high, so the wick is at least 45% down from the candle top to the body, how do I define it in Prorealtime? Same goes for retracement from low of candle, wick retraces at least 45% up from low of candle to body.
I made this code below but its not correct because its giving me Close and not Retracement of actual wick like I want. Can someone please help. Thank you.
IF close <= low + Range * 0.45 THEN
DRAWARROWDOWN (barindex[1],HIGH [1])coloured(255,10,10)
elsif close >= low + Range *0.45 THEN
DRAWARROWUP(barindex[1],low[1])coloured(10,255,10)
endif
RETURN