Under a (BarsInProgress == 1) line, I have the following line:
if (High[0] >= Position.AvgPrice + 12 * TickSize
But if I change that line to:
if(High[0] > Position.AvgPrice + 11 * TickSize
Then I get very slightly different backtest results....
Granted it only impacted 2 of 200 trades, nonetheless shouldn't the two lines return the same trades?


Comment