Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to limit the number of simultaneous ATM orders?
Collapse
X
-
How to limit the number of simultaneous ATM orders?
Is there a possibility to limit the number of ATM orders enabled on a chart? I'm testing a semi-automated strategy using alerts and I would like to avoid multiple triggers of the same order if I already have an active order.Tags: None
-
Hello andr3i,
A script can use logic to prevent itself from calling methods if the methods have already been called or called a certain number of times.
This would not prevent manual orders, but if you placed all orders through the script from logic or button presses, the script could decide if a new order is submitted.
Below is a link to the help guide on Atm Strategy methods.
And a link to an example that uses buttons.
Chelsea B.NinjaTrader Customer Service
-
Hello andr3i,
There would not be a built in script. You would have to write your strategy with your custom logic.
Use a bool to know when you have submitted an order. Require that bool to false for the condition that submits the order to trigger.
Below is a link to a forum post with helpful information about getting started with programming C#.
As a heads up, using Atm Strategy methods are advanced. This requires more consideration than NinjaStrategy methods.Chelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
53 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
32 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
195 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
356 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
277 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment