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 arvidvanstaey, Today, 02:19 PM
      4 responses
      11 views
      0 likes
      Last Post arvidvanstaey  
      Started by samish18, 04-17-2024, 08:57 AM
      16 responses
      61 views
      0 likes
      Last Post samish18  
      Started by jordanq2, Today, 03:10 PM
      2 responses
      9 views
      0 likes
      Last Post jordanq2  
      Started by traderqz, Today, 12:06 AM
      10 responses
      18 views
      0 likes
      Last Post traderqz  
      Started by algospoke, 04-17-2024, 06:40 PM
      5 responses
      48 views
      0 likes
      Last Post NinjaTrader_Jesse  
      Working...
      X