Event raised when the order is updated.

Namespace:  T4.API
Assembly:  T4API.20 (in T4API.20.dll)

Syntax

C#
public event Order..::.OrderUpdateEventHandler OrderUpdate
Visual Basic (Declaration)
Public Event OrderUpdate As Order..::.OrderUpdateEventHandler
Visual C++
public:
 event Order..::.OrderUpdateEventHandler^ OrderUpdate {
	void add (Order..::.OrderUpdateEventHandler^ value);
	void remove (Order..::.OrderUpdateEventHandler^ value);
}

Remarks

Occurs when the order has changed. This could be in response to the orders being submitted, revised or pulled (there will be several updates received for each), or when an order is filled. You will receive these updates regardless of whether this API instance makes the changes to the order, or whether another instance does.

See Also