I can't get EnterLongStopMarket to start working. I have a list consisting of support and resistance objects. Currently I'm trying to get it working with just 1 support with a condition that market price has to get lower than the support price. I tried all kinds of different ways for EnterLongStopMarket and none of them seem to work, but EnterLong order works just fine. I uploaded screenshots from the code and the chart.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
EnterLongStopMarket not filling
Collapse
X
-
EnterLongStopMarket not filling
Hello
I can't get EnterLongStopMarket to start working. I have a list consisting of support and resistance objects. Currently I'm trying to get it working with just 1 support with a condition that market price has to get lower than the support price. I tried all kinds of different ways for EnterLongStopMarket and none of them seem to work, but EnterLong order works just fine. I uploaded screenshots from the code and the chart.
2 PhotosTags: None
-
Hello KarlEST,
Thanks for your post.
Glad that you tested with a market order to confirm your entry logic.
When testing a strategy or indicator script, please check the "Log" Tab of the Ninjatrader control center for any error message or warning that gets produced.
The EnterLongStopMarket order will automatically be canceled if it is not filled on the same bar it is entered on. To maintain those orders you would have to create logic that resubmits them on each bar until they are filled or you no longer wish to resubmit them. Typically you could use a bool variable for this.
Alternately you can use the Advanced Order Handling method overload of EnterLongStopMarket(int barsInProgressIndex, bool isLiveUntilCancelled, int quantity, double stopPrice, string signalName) where you would see the bool parameter isLiveUntilCanceled to true.
References:
Please also review this section of the help guide for an overall understanding of the managed approach and the limitations: https://ninjatrader.com/support/help...d_approach.htm
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
56 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
133 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
73 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
45 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
49 views
0 likes
|
Last Post
|

Comment