Instead of all this:
protected override void OnOrderUpdate(Order order, double limitPrice, double stopPrice, int quantity , int filled, double averageFillPrice, OrderState orderState, DateTime time, ErrorCode error, string comment)
the function signature for OnOrderUpdate is now this:
void OnOrderUpdate(object sender, OrderEventArgs e)
and there are parameters in OrderEventArgs like ServerName and StatementDate that are undocumented. Although hopefully I am just missing something.
Cheers.

Comment