Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Managing ATM execution within ninjascript
Collapse
X
-
Managing ATM execution within ninjascript
hi ... I am writing a strategy that executes an ATM strategy upon meeting certain conditions. I need to ensure that I don't have more than one ATM strategy running at a given time. So I need help to know how to check to see if an existing ATM is running, and, if so, how to cancel it before executing a new one. Any advice is greatly appreciated. tx
Tags: None
-
pman,
Essentially that example code tracks the ID of the ATM strategy. It resets it to be a empty string when it detects that the ATM strategy closed. atmStrategyId is how it tracks if there is an active ATM strategy or not.
Code:else if (atmStrategyId.Length > 0 && GetAtmStrategyMarketPosition(atmStrategyId) == Cbi.MarketPosition.Flat) atmStrategyId = string.Empty;
Adam P.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
88 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
48 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
31 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
34 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
69 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment