Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Access ATM strategy ID

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Access ATM strategy ID

    Hi,

    I"m building a Strategy that activates a ATM Strategy
    I'm allowing the Strategy to make 5 trades/ direction

    but I'm having a problem getting the information of these different ATM strategies positions, because as i have programmed it now, I cant't access previous launched ATM strategies


    // Condition set LONG ENTRY
    //--------------------------
    if (EMA(Fast)[0] > EMA(Slow)[0]
    && Close[0] < Open[0] && (longcounter < 5))

    if (orderId.Length == 0 && atmStrategyId.Length == 0
    {
    atmStrategyId = GetAtmStrategyUniqueId();
    orderId = GetAtmStrategyUniqueId();
    AtmStrategyCreate(Action.Buy, OrderType.Market, 0, 0, TimeInForce.Gtc, orderId, "test", atmStrategyId);
    longcounter = longcounter +1
    }


    I need to have atmStrategyId and orderId in this condition to be unique very time the condition is true,
    should be something like
    atmStrategyId1 orderId1
    atmStrategyId2 orderId2
    atmStrategyId3 orderId3
    ...

    So afterwards I can access the different ATM strategies by calling these parameters, and adjust stop and target orders for each separately

    Please advice on how to tackle this problem

    Thank you very much
    Nico

    #2
    Calling the methods to get unique ids' are already unique. You could add a suffix such as "myId1", "myId2" etc... in front of the returned unique ID and store these active ids in some array etc...
    RayNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    152 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    87 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    131 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    127 views
    1 like
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    106 views
    0 likes
    Last Post CarlTrading  
    Working...
    X