Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Indicator knows market position.

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

    Indicator knows market position.

    Is there a way that indicator will know if the position is flat,short or long?

    #2
    Hello edward_bell,

    Thank you for your note.

    This is not possible without using a strategy to pull the Position.MarketPosition. Please visit the following link for information on Position.MarketPosition: http://www.ninjatrader.com/support/h...etposition.htm

    Comment


      #3
      Hi Patrick,

      Can you please advise if Edwards original question in this thread is now possible in NT8?

      Thanks and cheers,
      Shane

      Comment


        #4
        Hello ShaneAU,

        Thank you for your post.

        It is possible in NT 8 and NT 7 by running through the collection of accounts and positions.

        In NT 8:
        Code:
        			foreach (Account acct in NinjaTrader.Cbi.Account.Accounts)
        			{
        				if (acct.Positions != null)
        				{
        					foreach (Position pos in acct.Positions)
        					{
        						Print(pos.Account.Name + " " + pos.Instrument + " " + pos.MarketPosition + " " + pos.Quantity + " " + pos.AveragePrice);
        					}
        				}
        			}
        In NT 7:
        Code:
        foreach (Account acct in Cbi.Globals.Accounts)
        {
        if (acct.Positions != null)
        {
        PositionCollection positions = acct.Positions;
        foreach (Position pos in positions)
        {
        Print(pos.Account.Name + " " + pos.Instrument + " " + pos.MarketPosition + " " + pos.Quantity + " " + pos.AvgPrice);
        }
        }

        Comment


          #5
          Fantastic, thanks Patrick... and also for provide the code examples - much appreciated.

          Cheers,
          Shane

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          566 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          330 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          101 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          547 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          548 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X