Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Managing ATM execution within ninjascript

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

    Managing ATM execution within ninjascript

    hi ... I am writing a strategy that executes an ATM strategy upon meeting certain conditions. I need to ensure that I don't have more than one ATM strategy running at a given time. So I need help to know how to check to see if an existing ATM is running, and, if so, how to cancel it before executing a new one. Any advice is greatly appreciated. tx

    #2
    pman,

    I am happy to assist you.

    The SampleATMStrategy that comes with NinjaTrader as an example has a section that does this. Have you looked at this example or are you asking what part of it does this?
    Adam P.NinjaTrader Customer Service

    Comment


      #3
      thank you for your response ... i did review the example but i'm still not sure how to identify if an existing ATM strategy is running

      Comment


        #4
        pman,

        Essentially that example code tracks the ID of the ATM strategy. It resets it to be a empty string when it detects that the ATM strategy closed. atmStrategyId is how it tracks if there is an active ATM strategy or not.

        Code:
        else if (atmStrategyId.Length > 0 && GetAtmStrategyMarketPosition(atmStrategyId) == Cbi.MarketPosition.Flat)
        				atmStrategyId = string.Empty;
        Adam P.NinjaTrader Customer Service

        Comment


          #5
          thanks ... will test that!

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Belfortbucks, Today, 09:29 PM
          0 responses
          6 views
          0 likes
          Last Post Belfortbucks  
          Started by zstheorist, Today, 07:52 PM
          0 responses
          7 views
          0 likes
          Last Post zstheorist  
          Started by pmachiraju, 11-01-2023, 04:46 AM
          8 responses
          151 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
           
          Working...
          X