Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

position.quantity

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

    position.quantity

    Hi, basic question.

    Does position.quantity return an absolute value, or if the position is short does it return a negative number?

    #2
    Hello stewarco,

    Thanks for your post.

    The value will be positive and the direction can be seen with Position.MarketPosition. This could be tested with a snippet like the following:

    Code:
    protected override void OnBarUpdate()
    {
    	if(Position.MarketPosition == MarketPosition.Flat)
    		EnterShort();
    	else
    		Print(Position.Quantity);
    }
    Publicly available documentation on the Position object can be found here - https://ninjatrader.com/support/help...s/position.htm

    Please let us know if we can be of further assistance.

    Comment


      #3
      Thanks that was very clear.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      89 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      135 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      68 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      119 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      69 views
      0 likes
      Last Post PaulMohn  
      Working...
      X