Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

BarsRequest and Data differences.

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

    BarsRequest and Data differences.

    I'm building an Addon that will analyze the previous 30 days bar data. Here is a snippet of my code:

    ===
    DateTime toDate = DateTime.Now;
    DateTime fromDate = toDate.AddDays(-30);
    var barsRequest = new BarsRequest(Instrument, fromDate, toDate);
    barsRequest.BarsPeriod = new BarsPeriod {
    BarsPeriodType = BarsPeriodType.Minute,
    Value = 30,
    };

    barsRequest.TradingHours = TradingHours.Get("CME US Index Futures RTH");

    barsRequest.Request(....
    ===

    I've noticed that the results of that request can return inaccurate and missing bars. If I setup a chart with a matching dataseries and run reload historical data on that chart, the next BarsRequest in the addon returns accurate bars. Is there a way to handle this from the addon so I do not have to reload historical data from a chart?

    Thanks
    Jimmy​
    Last edited by JimmyJones; 03-08-2025, 09:22 AM.

    #2
    Hello Jimmy,

    Thank you for your note.

    There is a ReloadAllHistoricalData() method, however you would need a chart open set to the same instrument and bar type and number of days to load.
    Join the official NinjaScript Developer Community for comprehensive resources, documentation, and community support. Build custom indicators and automated strategies for the NinjaTrader platforms with our extensive guides and APIs.
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Thanks. I was hoping to avoid that.
      This is a once a day thing for me, so I'm guessing I probably should just restart ninja daily with the Cache and History cleared.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      558 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      324 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
      545 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      547 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X