Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Closing an ATM
Collapse
X
-
Hello,
I am unsure based on just the log error as to what you are trying that is generating that so I would need more information.
Can you provide more details on what you are trying to do or how you are trying to check this currently?
If you are already trying something in NinjaScript can you provide any relevant code you are using?
I look forward to being of further assistance.
-
Hello,
In this case, are you providing an ID or are you using ("AtmStrategyId") ?
I would still need more information that just a method to assist in this.
That method is to close but would require that you supply the ID to be closed, are you doing this?
Please let me know if I may be of additional assistance.
Comment
-
if (orderId.Length == 0 && atmStrategyId.Length == 0)
atmStrategyId = GetAtmStrategyUniqueId();
orderId = GetAtmStrategyUniqueId();
AtmStrategyCreate(Cbi.OrderAction.Sell, OrderType.Market, 0, 0,
TimeInForce.Day, orderId, "AtmStrategyTemplate", atmStrategyId);
Is it possible to replace the atmStrategyId with a individual ID and match that ID to the ATM Close code?
Comment
-
Hello,
The line:
Is just using a NinjaScript method that generates an Always unique ID. You could replace this with any unique string that you would like but it would absolutely need to be unique every time.Code:atmStrategyId = GetAtmStrategyUniqueId();
That ID would then be used anywhere you need to use an ATMStrategyID.
In reference to what you have provided, it would need to be changed from:
toCode:AtmStrategyClose("AtmStrategyId");
in order to be using the Variable instead of just a stringCode:AtmStrategyClose(atmStrategyId);
Please let me know if I may be of additional assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
602 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
347 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
560 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
559 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment