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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        646 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        367 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        108 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        570 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        573 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X