Help needed
-
Hi, i am trying to make a really simple entry method based on outside bars. These are the entry rules:
Condition 1: outsidebar definded
high [0] > high [1] && low [0] < low [1]
Condition 2: Close of current bar is less than previous close
close [0] < low [1] -> buy next bar open at market price
And here is a picture of my condition blocks. Can anyone spot why this is not working. When i backtest the ea there are no positions opened..

-
Remember CandleID 0 is the current open candle, you are trying to define a candle who has not closed yet.
-
cheers, thanks