I have created a strategy that places a "buy-stop order" above an indicator (for example, a simple moving average). If the order is not executed, the entry level must be updated to the next bar, according to the new moving average value. But it happens to me that when a bar ends and the order has not entered, the buy-stop order is canceled and this order is not relaunched on the next bar, but rather on the second bar afterwards. How can I get this buy-stop order order to be updated with each new bar?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Update a buy-stop order
Collapse
X
-
Update a buy-stop order
I have created a strategy that places a "buy-stop order" above an indicator (for example, a simple moving average). If the order is not executed, the entry level must be updated to the next bar, according to the new moving average value. But it happens to me that when a bar ends and the order has not entered, the buy-stop order is canceled and this order is not relaunched on the next bar, but rather on the second bar afterwards. How can I get this buy-stop order order to be updated with each new bar?Tags: None
-
Hello soyjesus,
If an order is resubmitted on every new bar, it will not be cancelled.
Below are links to examples that demonstrate this with exit orders.
In an unlocked strategy, you can also use the isLiveUntilCancelled bool to keep an order alive and have this not automatically be cancelled.
ExitLongStopMarket(int barsInProgressIndex, bool isLiveUntilCancelled, int quantity, double stopPrice, string signalName, string fromEntrySignal)
Chelsea B.NinjaTrader Customer Service
- Likes 1
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
475 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
316 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
253 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
340 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
305 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment