In the event that the stop executes, I want to shut down the strategy or at least ensure no more Enter*() methods are called. It appears that the right way to do this is call CloseStrategy(). How can I detect that the stop has executed in the context of the managed approach?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Disable Strategy on Stop Fill
Collapse
X
-
Disable Strategy on Stop Fill
I've got a strategy that is using the managed order approach. It enters positions with EnterLong() and EnterShort() and exits them with ExitLong() and ExitShort(). In addition it sets a stop with SetStopLoss().
In the event that the stop executes, I want to shut down the strategy or at least ensure no more Enter*() methods are called. It appears that the right way to do this is call CloseStrategy(). How can I detect that the stop has executed in the context of the managed approach?Tags: None
-
Hello The Big D,
I would not recommend using multiple exit orders on the same entry.
That said, CloseStrategy() would be correct to disable the strategy.
You could choose to call this in OnOrderUpdate() or OnExecution() when the order.Name is "Stop loss" and the OrderState is .Filled.
Chelsea B.NinjaTrader Customer Service
-
Chelsea,
Thanks for your response. The code example in your second link is very helpful. Do I have to be concerned that OnOrderUpdate() may be called in the middle of OnBarUpdate()? If so, do I need to protect any variables shared between the two with some sort of mutex?
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
87 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
132 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
65 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
118 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
67 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment