Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Multi instruments strategy orders not filled at same time

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

    Multi instruments strategy orders not filled at same time

    BIP 0 MSFT 10min
    BIP 1 AAPL 10min

    if (BarsInProgress == 1)
    {
    EnterLong(1,100,"Buy AAPL");
    EnterLong(0, 100, "BUY MSFT"); }
    Are they supposed to enter at same time? In my test result MSFT order is filled one bar behind AAPL? What's wrong?

    #2
    Hi Stephen, this behavior is because the MSFT order is triggered on the secondary bar series, but the order is sent and filled on the primary bar series.

    If you'd like better accuracy while backtesting, please see this reference sample about Backtesting NinjaScript Strategies with an Intrabar Granularity.

    The comments inside the sample contain detailed information about multiple instrument bars.
    AustinNinjaTrader Customer Service

    Comment


      #3
      Hello
      I am still having the same problem, I have to wait until BIP1 to get the latest price for the second instrument, how can I enter 2 postions at same time?

      Comment


        #4
        Stephen, this is expected as you have to wait one OnBarUpdate() to process the entry on the next BIP, either use the link Austin provided to achieve a more granular entry or just submit each in it's own BarsInProgess context.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        662 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        376 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        110 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        575 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        580 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X