Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

'GetAtmStrategyMarketPosition' method error: ATM strategy

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

    'GetAtmStrategyMarketPosition' method error: ATM strategy

    According to the documentation, I should get a marketflat response instead of this error.
    'GetAtmStrategyMarketPosition' method error: ATM strategy ID 'a14d63f8bbf24672a1c7931bebdd3f80' does not exist

    GetAtmStrategyMarketPosition()
    Previous page Return to chapter overview Next page

    Needs Review: This topic is still under review by the NinjaTrader Product Management team. Information on this page is considered to be accurate, although is subject to change during the NinjaTrader 8 beta program.



    Definition

    Gets the current market position of the specified ATM Strategy. If the ATM Strategy does not exist then MarketPosition.Flat is returned.

    #2
    Hello junkone,

    Thank you for your post.

    You are correct that it needs review. If the ATM Strategy ID does not exist the method could not be called. Make sure the ATM Strategy ID is not set to null before trying to call it.

    Comment


      #3
      To avoid error on Output window you have to check first if an ATMstrategy is open with atmStrategyId.Length, just the same as the sample file. This works either on NT7 and NT8

      Example: Dataseries that keeps track of position on every bar while the strategy is running:

      position.Set(-1); // Flat
      if (atmStrategyId.Length > 0)
      {
      if (GetAtmStrategyMarketPosition(atmStrategyId) == Cbi.MarketPosition.Long)
      {
      position.Set(1); // Long
      }
      else
      {
      position.Set(0); // Short
      }
      }

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, Today, 06:46 AM
      0 responses
      8 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, Yesterday, 05:21 PM
      0 responses
      12 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      15 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      82 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      47 views
      0 likes
      Last Post PaulMohn  
      Working...
      X