if ( (execution.Order.OrderState == OrderState.Cancelled) && (execution.Order.Filled > 0) ) // process new order fill...
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
OnExecution() order fill condition
Collapse
X
-
OnExecution() order fill condition
I noticed the following code in one of NinjaTrader's strategy examples (SampleOnOrderUpdate.cs) when testing to see if an order has been filled in OnExecution(). One of the tests were:
Under what circumstances could this condition happen where the order state is cancelled and yet the order also received a fill?Code:Last edited by risingfire; 06-25-2014, 12:40 PM.Tags: None
-
Hello risingfire,
It is possible to cancel an order that has partial filled but not completely filled.
When this happens you may want to detect this, and then use the filled amount to manage your position, such as exiting that quantity or creating a stop for that quantity.Chelsea B.NinjaTrader Customer Service
-
Thank you, Chelsea, that is helpful. In these situations, who is doing the cancelling?
For example, would I see this condition if I submit a CancelOrder() but the order was partially filled?
Is there any situation when the brokerage would cancel the order with only a partial fill?
Comment
-
-
Not quite the brokerage; more like the NT processing engine.Originally posted by risingfire View PostThank you, Chelsea, that is helpful. In these situations, who is doing the cancelling?
For example, would I see this condition if I submit a CancelOrder() but the order was partially filled?
Is there any situation when the brokerage would cancel the order with only a partial fill?
Say you have a large limit order. The market takes off after a partial fill and never returns, so the order cannot be completed. NT will cancel the unfilled order when the next bar opens. Ergo, you have a partial order that gets cancelled.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
85 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
47 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
29 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
32 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
67 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment