Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 zstheorist, Today, 07:52 PM
    0 responses
    5 views
    0 likes
    Last Post zstheorist  
    Started by pmachiraju, 11-01-2023, 04:46 AM
    8 responses
    150 views
    0 likes
    Last Post rehmans
    by rehmans
     
    Started by mattbsea, Today, 05:44 PM
    0 responses
    6 views
    0 likes
    Last Post mattbsea  
    Started by RideMe, 04-07-2024, 04:54 PM
    6 responses
    33 views
    0 likes
    Last Post RideMe
    by RideMe
     
    Started by tkaboris, Today, 05:13 PM
    0 responses
    6 views
    0 likes
    Last Post tkaboris  
    Working...
    X