I would like to start my custom strategy without the history of completed operations appearing.
I have tried to configure:
protected override void OnStateChange()
{
if (State == State.Configure)
{
// Exclude trade history in a backtest to benefit from memory savings
IncludeTradeHistoryInBacktest = false;
}
}
But it doesn't work.
Could you help me?
Thank you very much in advance and have a nice day.

Comment