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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    571 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    330 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    549 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    549 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X