Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    JimNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by bortz, 11-06-2023, 08:04 AM
    47 responses
    1,603 views
    0 likes
    Last Post aligator  
    Started by jaybedreamin, Today, 05:56 PM
    0 responses
    8 views
    0 likes
    Last Post jaybedreamin  
    Started by DJ888, 04-16-2024, 06:09 PM
    6 responses
    18 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by Jon17, Today, 04:33 PM
    0 responses
    4 views
    0 likes
    Last Post Jon17
    by Jon17
     
    Started by Javierw.ok, Today, 04:12 PM
    0 responses
    12 views
    0 likes
    Last Post Javierw.ok  
    Working...
    X