Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

BarsRequest error "The given key was not present in the dictionary."

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

    BarsRequest error "The given key was not present in the dictionary."

    I get an error message "The given key was not present in the dictionary." when using BarsRequest.
    The problem has only recently appeared.
    I tried to delete the local database, delete the cache folder, restart Ninja Trader, restart my PC, but nothing worked. Still the same error message.
    How do I fix the error?

    I minimized the code to only print the error message. I call it in an indicator:
    Code:
    protected override void OnStateChange() {
        if (State == State.SetDefaults) {
          // ...
       } else if (State == State.Configure) {
          new BarsRequest(Instrument, DateTime.now.AddYears(-20), DateTime.now.AddYears(-1)) {
             MergePolicy = MergePolicy.MergeBackAdjusted,
             BarsPeriod = new BarsPeriod { BarsPeriodType = BarsPeriodType.Minute, Value = 1 },
             TradingHours = TradingHours,
          }.Request((bars, errorCode, errorMessage) => {
             if (errorCode != ErrorCode.NoError) {
                Print(string.Format("Error on requesting bars: {0}, {1}", errorCode, errorMessage));
                return;
             }
          });
       }
    }
    Last edited by Bobin; 08-13-2022, 10:39 PM.

    #2
    I found a solution...
    I replaced "TradingHours = TradingHours," with "TradingHours = Instrument.MasterInstrument.TradingHours," and now it works.
    Very strange.

    Comment


      #3
      Hello Bobin,

      I'm uncertain on why the TradingHours would cause this error.

      The working example I have posted on the link below, uses the TradingHours of the primary instrument without error.


      Is your script adding multiple series or something along these lines?
      What TradingHours is selected for the primary series?
      Chelsea B.NinjaTrader Customer Service

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      633 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      364 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      105 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      567 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      568 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X