Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Count Bars on MultiTimeframe

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

    Count Bars on MultiTimeframe

    Hello Dear Friends.
    I have two DateTime value.

    DateTime dateStartTime, dateEndTime.

    On chart open Time Frame Minute 1.

    How I can get count bars range intDeltaBarsFromM5Chart = ???(dateStartTime - dateEndTime) from the chart period Minute 5, Minute 10 and Minute 60 in the indicator?

    Thank you very much.

    #2
    Hello _Roman,

    Thank you for your post.

    If I'm understanding you correctly, you are looking to find out how many bars of each of your additional data series (5 minute, 10 minute and 60 minute) were timestamped between the dateStartTime and the dateEndTime. Is that correct?

    Thanks in advance; I look forward to assisting you further.

    Comment


      #3
      Originally posted by NinjaTrader_Kate View Post
      Hello _Roman,
      Is that correct?
      Yes, of course.

      Comment


        #4
        Hello _Roman,

        Thank you for your reply.

        The simplest way would be to set up a time condition in OnBarUpdate() so that if the time is between dateStartTime and dateEndTime that we can then assess which Bars are in progress, and then increment a count variable each time a bar is processed that is timestamped in that period. Once you're outside of that time period, you could then use those counters to see how many bars were processed.

        So, you could start with something like this:

        Code:
                    if ((Times[0][0].TimeOfDay >= DateStartTime.TimeOfDay)
                         && (Times[0][0].TimeOfDay == DateEndTime.TimeOfDay) && BarsInProgress == 1)
                    {
                        Minute5Count++;
                    }
        Please let us know if we may be of further assistance to you.

        Comment


          #5
          Thank you Kate.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by charlesugo_1, 05-26-2026, 05:03 PM
          0 responses
          68 views
          0 likes
          Last Post charlesugo_1  
          Started by DannyP96, 05-18-2026, 02:38 PM
          1 response
          151 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
          100 views
          0 likes
          Last Post CarlTrading  
          Started by Hwop38, 05-04-2026, 07:02 PM
          0 responses
          288 views
          0 likes
          Last Post Hwop38
          by Hwop38
           
          Working...
          X