Trade when current candle hits a new high
-
I am trying to set up an order when the current candle makes a new high (or low).
I tried the condition Candle Close(0) above Candle High(0) in case it would work. It didn't.
Any ideas on the best way to do this?
I might have missed something (been a long day and I'm pretty new to fxdreema)
-
What do you mean by new high? Because even in the first moments of the existence of the candle new highs are formed, probably multiple. Every time the price goes up. So I think you just want to measure the size of the upper wick.
-
candle (0) is the current candle. Candle (1) is the last closed candle
try:
candle high (1) above candle high (0)the condition will pass if the current candles high goes above the previous candle
hope this helps