Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Ignoring historical data doesnt work on multiinsturment strategy

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

    Ignoring historical data doesnt work on multiinsturment strategy

    Hello, I have a problem with skipping historical data in my strategy.

    In initialize function i have:

    Code:
    Add(PeriodType.Day, 1); // BarsArray[1]
    //Add(PeriodType.Week, 1); // BarsArray[2]
    //Add(PeriodType.Month, 1); // BarsArray[3]
    and in onBarUpdate()

    Code:
    if(Historical) {
    return;
    }
    If the week and month timeframe adds are commented out, historical data are filtered out as expected. But when I uncomment them (not even using their data), then historical data are being processed causing my strategy to act on old data.

    Tested with Days to Load: 70 and min bars required 20

    Am I missing anything? Thanks.

    #2
    Hi Dukecz, which primary series are you using here?

    The min bars required would need to be fulfilled for all series - so 20 bars data for monthly as well, which your DaysToLoad (based on calendar days) would not be able to provide - you would need to increase it here significantly.

    Comment


      #3
      Originally posted by NinjaTrader_Bertrand View Post
      Hi Dukecz, which primary series are you using here?

      The min bars required would need to be fulfilled for all series - so 20 bars data for monthly as well, which your DaysToLoad (based on calendar days) would not be able to provide - you would need to increase it here significantly.
      Thanks, that fixed the problem. I have been using 1 and 5 min as primary data series.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      66 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      149 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      162 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      99 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      286 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Working...
      X