Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 wzgy0920, 04-20-2024, 06:09 PM
      2 responses
      26 views
      0 likes
      Last Post wzgy0920  
      Started by wzgy0920, 02-22-2024, 01:11 AM
      5 responses
      32 views
      0 likes
      Last Post wzgy0920  
      Started by wzgy0920, Yesterday, 09:53 PM
      2 responses
      49 views
      0 likes
      Last Post wzgy0920  
      Started by Kensonprib, 04-28-2021, 10:11 AM
      5 responses
      192 views
      0 likes
      Last Post Hasadafa  
      Started by GussJ, 03-04-2020, 03:11 PM
      11 responses
      3,234 views
      0 likes
      Last Post xiinteractive  
      Working...
      X