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 PaulMohn, Today, 05:00 AM
      0 responses
      8 views
      0 likes
      Last Post PaulMohn  
      Started by ZenCortexAuCost, Today, 04:24 AM
      0 responses
      6 views
      0 likes
      Last Post ZenCortexAuCost  
      Started by ZenCortexAuCost, Today, 04:22 AM
      0 responses
      3 views
      0 likes
      Last Post ZenCortexAuCost  
      Started by SantoshXX, Today, 03:09 AM
      0 responses
      16 views
      0 likes
      Last Post SantoshXX  
      Started by DanielTynera, Today, 01:14 AM
      0 responses
      5 views
      0 likes
      Last Post DanielTynera  
      Working...
      X