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