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 Hwop38, 05-04-2026, 07:02 PM
        0 responses
        164 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        318 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        246 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        350 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        179 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Working...
        X