I have the following in my code for a Long strategy:
if (Condition1 >= 4)
{
SetStopLoss(Low[0] - TickSize);
}
However, when I run the BACKTEST, ninjatrader exits when price is EQUAL to the Low. I would like for ninjatrader to exit ONLY when price is 1-"tick" LESS THAN the Low. what am I doing wrong?
TIA

Comment