I use the standard "enterLong", "exitLong" etc...
Even though I get orders, the "OnExecutionUpdate" is NOT being triggered.
To test further, I added the following to the sampleMA to check the "OnExecutionUpdate" calls and do not get anything although I do have orders:
protected override void OnExecutionUpdate(Execution execution, string executionId, double price, int quantity, MarketPosition marketPosition, string orderId, DateTime time)
{
Print("execution.Order.name " + execution.Order.Name + Time[0].ToString());
}
What setting needs to be added to get this to trigger??
Note: This is running against data down-loaded from IB and is also running on an IB paper account...
Thanks!

Comment