Setting TraceOrders = true gives error CS0103: The name 'TradeOrders' does not exist in the current context. My code is:
protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
TraceOrders = true;
}
}
Where is the problem?
Thanks for your support.

Comment