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 CaptainJack, 05-29-2026, 05:09 AM
      0 responses
      169 views
      0 likes
      Last Post CaptainJack  
      Started by CaptainJack, 05-29-2026, 12:02 AM
      0 responses
      88 views
      0 likes
      Last Post CaptainJack  
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      128 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      208 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      185 views
      0 likes
      Last Post CarlTrading  
      Working...
      X