Despite having the following code in my strategy, it is exiting on close? What can explain this? I am running a backtest on NT7. Thanks,
protected override void Initialize()
{
CalculateOnBarClose = true;
ExitOnClose = false;
EntriesPerDirection = 10;
EntryHandling = EntryHandling.UniqueEntries;
}

Comment