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 Hwop38, 05-04-2026, 07:02 PM
    0 responses
    164 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    318 views
    0 likes
    Last Post CaptainJack  
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    246 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    350 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    179 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Working...
    X