Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

BarsinProgress with Daily

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

    BarsinProgress with Daily

    I am trying to add a daily time frame to my indicator (probably running on 5-15min bars) but for some reason whenever I call barsinprogress ==1, I never get any results. I am loading 20 days of data on the chart. here is the code

    Code:
    Add(PeriodType.Day,1);
    ......
    
     if (BarsInProgress == 0)
                     {
    					Print("bars in progress == 0 " + Time[0]);  // this works
    
    }
    
     if (BarsInProgress == 1)
                     { // for daily data
    
                         Print("Bars in progress == 1 " + Time[0]); // this doesnt work
    
                     }
    any ideas

    #2
    Hello,

    Most indicators will not start calculating until after 20 bars have been calculated. Try expanding the number of days back to see if you get it to run then.

    Also, the indicator will not run until all data is loaded.

    Who is your data feed provider and also what is the primary data series?

    I look forward to assisting you further.
    BrettNinjaTrader Product Management

    Comment


      #3
      its weird b/c I can get the 2nd time series to work if I change it to 60 mins 60, or 1440, but not a daily series.

      I but in the contion

      if (CurrentBar > 60)

      but still I get 0.

      I tried multiple instruemnts/data series and nothing. Load 50days worth of data.

      Does it have anything to do with calling the

      Add(PeriodType.Day,1);

      is that the right notation

      Comment


        #4
        snap... I didnt have daily bars loaded. I thought that ninja made daily bars from min but I guess not. Problem solved thanks to kinetic. My data is on the other computer.. bah!

        Thanks for the help though

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by CarlTrading, 03-31-2026, 09:41 PM
        1 response
        152 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        89 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        131 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        127 views
        1 like
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        107 views
        0 likes
        Last Post CarlTrading  
        Working...
        X