I wanted "Exit On Close" to be disabled and I coded below
protected override void Initialize()
{
ClearOutputWindow();
TraceOrders = true;
ExitOnClose = false;
CalculateOnBarClose = false;
.....
During execution, strategy positions still get closed with "Exit on close" message on the charts at the end of session. Can you tell me why the "ExitOnClose = false" code still is being ignored?
Thanks for your reply.
-traderjh

Comment