Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Bars In Progress error

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

    Bars In Progress error

    I am loading 81 symbols via the Add for one of my strategies. Yesterday everything worked fine. Today my system is only trading about 5 of them. I did a print statement to track the barsinprogress and only 5 of them are spitting out. I haven't adjusted the code any from yesterday that was working with all 81.

    I cleared the cache.

    What else can I do?

    #2
    Hello vjsworld,

    Could you give us a snippet of your code on how you are using the "Add" to load the different instruments into your Automated Strategy?

    Also, did you shutdown NinjaTrader before removing the cache data?

    Happy to be of further assistance.
    JCNinjaTrader Customer Service

    Comment


      #3
      reply

      yes i did restart during the clearing of cache.

      here is my add:

      j = 1;
      foreach (var pair in myBarsInProgress)
      {
      Add(pair.Key, PeriodType.Minute, 1);
      Instr[1, j] = j;
      j = j + 1;
      Print(pair.Key);
      }

      Comment


        #4
        Hello vjsworld,

        Note that dynamically using the Add() method is not supported.

        With that said, are you checking "pair" to make sure that it has all of the 81 instruments that you are trying to Add() inside of Initialize?
        JCNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by charlesugo_1, 05-26-2026, 05:03 PM
        0 responses
        64 views
        0 likes
        Last Post charlesugo_1  
        Started by DannyP96, 05-18-2026, 02:38 PM
        1 response
        149 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        162 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 05-10-2026, 08:12 PM
        0 responses
        99 views
        0 likes
        Last Post CarlTrading  
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        286 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Working...
        X