Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Linking entries

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

    Linking entries

    Hello,
    In my strategy I want to enter a position with 2 contracts, have the first exit early and the 2nd remain in the market longer. The exit of the 2nd will be dependant on the 1st. How would one go about first separating 2 entries that fire according the same conditions and then causing the exit of the 2nd to be dependant on the first? Any suggestions?

    #2
    CaptainAmericaXX, in order to scale out of a position, you will need to first scale into it.

    You can do this by submitting two orders at the same time from the same conditions:
    Code:
    if (entry conditions == true)
    {
       EnterLong(1, "long entry 1");
       EnterLong(1, "long entry 2");
    }
    As for exiting the second position after the first, you will need to keep track of when you want to exit and then submit the orders at the appropriate time, or you can track the executions and look for the exits in OnExecution() or OnOrderUpdate().
    AustinNinjaTrader Customer Service

    Comment


      #3
      Hello,
      Thank you for the response to my question.
      This is what I have so far on that issue:
      if (condition == true)
      {
      IOrder order1 = EnterShort(DefaultQuantity, "order1");
      IOrder order2 = EnterShort(DefaultQuantity, "order2");

      }
      Pretty simple. Unfortunately as order1 is coming back valid, order2 is coming back null. Any idea why order2 wouldn't work?
      Thanks

      Comment


        #4
        Hello,

        Thanks for the note.

        What do you have entries per direction set to when you run the strategy? This is in the strategy start parameters.

        I look forward to assisting you further.
        BrettNinjaTrader Product Management

        Comment


          #5
          I hate it when I forget simple things. I added the Unique entries. That fixed it. Thanks for the help.

          Comment


            #6
            We all do it . Glad to help.
            BrettNinjaTrader Product Management

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            579 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            334 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            101 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            554 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            551 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X