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 f.saeidi, Yesterday, 12:14 PM
      9 responses
      23 views
      0 likes
      Last Post f.saeidi  
      Started by Tim-c, Today, 03:54 AM
      0 responses
      3 views
      0 likes
      Last Post Tim-c
      by Tim-c
       
      Started by FrancisMorro, Today, 03:24 AM
      0 responses
      3 views
      0 likes
      Last Post FrancisMorro  
      Started by Segwin, 05-07-2018, 02:15 PM
      10 responses
      1,772 views
      0 likes
      Last Post Leafcutter  
      Started by Rapine Heihei, 04-23-2024, 07:51 PM
      2 responses
      31 views
      0 likes
      Last Post Max238
      by Max238
       
      Working...
      X