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 SalmaTrader, 07-07-2026, 10:26 PM
      0 responses
      50 views
      0 likes
      Last Post SalmaTrader  
      Started by CarlTrading, 07-05-2026, 01:16 PM
      0 responses
      22 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 06-17-2026, 10:32 AM
      0 responses
      16 views
      0 likes
      Last Post CaptainJack  
      Started by kinfxhk, 06-17-2026, 04:15 AM
      0 responses
      22 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 06-17-2026, 04:06 AM
      0 responses
      23 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X