OnExecutionUpdate()
OnExecutionUpdate()
Definition
An event driven method which is called on an incoming execution of an order managed by a strategy. An execution is another name for a fill of an order.
- An order can generate multiple executions (partial fills)
- OnExecutionUpdate is typically called after OnOrderUpdate()
- Only orders which have been submitted and managed by the strategy will call OnExecutionUpdate()
- Executions drive the strategy Position object, which is updated when this method is called
- Programming in this environment is reserved for the more advanced user. If you are for example looking to protect a strategy managed position with a basic stop and target, then the Set() methods would be more convenient.
- When connected to the Playback connection, it is possible for OnExecutionUpdate() to trigger in the middle of a call to OnBarUpdate(). The Sim101 account adds a simulated random delay for processing execution events, but the Playback connection triggers executions immediately, for the sake of consistency in backtesting. Because of this, OnExecutionUpdate() can appear to be triggered earlier than it would in live trading, or when simulation trading on a live connection.
- Please also review Multi-Thread Considerations for NinjaScript.
- Its best practice to only work with the passed by value parameters and not reference parameters. This insures that you process each change of the underlying state.
- Rithmic and Interactive Brokers Users: When using a NinjaScript strategy it is best practice to only work with passed by value data from OnExecutionUpdate(). Instances of multiple fills at the same time for the same instrument might result in an incorrect OnPositionUpdate, as sequence of events are not guaranteed due to provider API design.
Method Return Value
This method does not return a value.
Syntax
You must override the method in your strategy with the following syntax:
protected override void OnExecutionUpdate(Execution execution, string executionId, double price, int quantity, MarketPosition marketPosition, string orderId, DateTime time)
Parameters
Examples
OnExecutionUpdate Example (See SampleOnOrderUpdate for complete example)
Additional Reference Samples
Additional reference code samples are available in the NinjaScript Educational Resources section of our support forum.

