in an Indicator, not a Strategy
On Playback connection: (cause it is the weekend and I have no live feed or SIM to test)
I have this...
if (MasterAccount != null) MasterAccount.OrderUpdate += OnOrderUpdate;
if (MasterAccount != null) MasterAccount.ExecutionUpdate += OnExecutionUpdate;
this is not firing....the Executions Tab on the Control Panel shows the Executions, but this is not firing
private void OnExecutionUpdate(object sender, ExecutionEventArgs e)
{
Print ("OnExecutionUpdate");
}
OnOrderUpdate is working fine....
How to debug??

Comment