I have CalculateOnBarClose = false; because I want it to calculate at current price.
And this is my codeline....
if Close[0] < SuperTrend(14, 2.618, true).UpTrend[0]
{ ExitLong(" ", " ");}
The problem is that the supertrend line is switching to the downtrend side, so price is never crossing down through the supertrend technically. Is there any way to have it execute the stop at the point I have circled on the photo when it crosses below the green supertrend dots?

Comment