would it be possible to force OnOrderUpdate() to be executed always before OnMarketData() and OnBarUpdate()?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Execution order
Collapse
X
-
Execution order
Hello,
would it be possible to force OnOrderUpdate() to be executed always before OnMarketData() and OnBarUpdate()? -
Hello guillembm,
Thank you for your post.
There is no means to force OnOrderUpdate() to be called before OnMarketData() and OnBarUpdate(). There is no means to force any set of functions to be called in a specific order. Please adhere to the Help Guide on when these functions are called.
Any particular reason you wish to call the functions in this order?
I look forward to your response.
-
I am having rejections when using the ChangeOrder() method. This is because, sometimes, this method is executed and the order has been already filled but the state hasn't been updated.
to prevent it I set these filters before executing ChangeOrder():
if (MyOrder.OrderState != OrderState.Filled
&& MyOrder.OrderState != OrderState.Cancelled
&& MyOrder.OrderState != OrderState.CancelPending
&& MyOrder.OrderState != OrderState.Unknown
&& MyOrder.OrderState != OrderState.ChangePending
&& MyOrder.OrderState != OrderState.Rejected )
but it seems this is not enough. Forcing OnOrderUpdate() to be called first would be a good solution.
Comment
-
Hello guillembm,
Thank you for your response.
So you are calling ChangeOrder() in OnMarketData() and/or OnBarUpdate() but you are calling it when the order state is likely filled, cancelled, or rejected.
Please try updating the an Order object in OnOrderUpdate and then checking that object in the function you call ChangeOrder() in.
Please let me know if you have any questions.
Comment
-
Thanks.
It seems I misunderstood it till now. I always believed that the order state was updated by NT and then this update triggered the execution of OnOrderUpdate() .
When you say "Please try updating the an Order object in OnOrderUpdate and then checking that object in the function you call ChangeOrder() in." it seems like I can force in the order state to be updated. Can you provide sample code?
Comment
-
Hello guillembm,
Thank you for your response.
I mean that you create a custom Order object that you update in OnOrderUpdate() and then call that Order object in any other function.
An example of this is available in the Order object documentation in the Help Guide at the following link: https://ninjatrader.com/support/help...n-us/order.htm
Please let me know if you have any questions.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
160 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
307 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
244 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
348 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
178 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment