Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Exitlong/short also opens an opposite position

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

    Exitlong/short also opens an opposite position

    Hi I am having trouble using ExitLong() and ExitShort() methods.

    Are there any cases which these could also open new positions? i.e. Position is long 1, ExitLong(Math.Min(Position.Quantity, X)) sells 2, making the strategy now short 1?

    Thanks,
    John

    #2
    Hello John,

    Thanks for your post.

    Exit methods will not be able to open new positions. This behavior can be observed using a basic test script and the Simulated Data Feed. For Example:

    Code:
    protected override void OnBarUpdate()
    {
    	if(State == State.Historical) return; // Skip Historical processing
    	
    	// If we are flat, enter 2 long, otherwise exit 1 long position
    	if(Position.MarketPosition == MarketPosition.Flat)
    		EnterLong(2);
    	else
    		ExitLong(1);
    }
    Testing the code above you will see that on the first realtime bar closure, the strategy enters long 2, exits 1 on the next bar and exits the remaining quantity after that.

    Further information on how the Managed Approach can be used for opening and closing positions, including the internal order handling behaviors can be found in the documentation page below.

    Managed Approach - https://ninjatrader.com/support/help...d_approach.htm

    Please let us know if you have any additional questions.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    90 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    137 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
    120 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    71 views
    0 likes
    Last Post PaulMohn  
    Working...
    X