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

Close all open positions in a strategy

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

    Close all open positions in a strategy

    Hello,

    I have a strategy that trades up to 10 positions of the same instrument. I would like to close all positions at once when a conditions is met. Is there syntax to close all open positions at once? Is there an example of this?

    Thanks,
    Tom

    #2
    Hi Tom, thanks for writing in. You can check the position and the position quantity to exit the full position e.g.

    Code:
    if(<condition to exit>)
    {
        if(Position.MarketPosition == MarketPosition.Long)
        {
            ExitLong(Position.Quantity);
        }
    }
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      Thanks Chris. Would this work with multiple entry signal names? The signal names are different.

      Comment


        #4
        Hi Tom, Yes, it will work on the full position size. You can test it out by printing the Position.Quantity value after the two entries have been made to confirm it equals the total position size.

        Kind regards,
        -ChrisL
        Chris L.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Karado58, 11-26-2012, 02:57 PM
        8 responses
        14,825 views
        0 likes
        Last Post Option Whisperer  
        Started by Option Whisperer, Today, 09:05 AM
        0 responses
        1 view
        0 likes
        Last Post Option Whisperer  
        Started by cre8able, Yesterday, 01:16 PM
        3 responses
        11 views
        0 likes
        Last Post cre8able  
        Started by Harry, 05-02-2018, 01:54 PM
        10 responses
        3,204 views
        0 likes
        Last Post tharton3  
        Started by ChartTourist, Today, 08:22 AM
        0 responses
        6 views
        0 likes
        Last Post ChartTourist  
        Working...
        X