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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    74 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    40 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    63 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    63 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    53 views
    0 likes
    Last Post CarlTrading  
    Working...
    X