Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Calculate High for every x minutes

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

    Calculate High for every x minutes

    I am trying to have an indicator on a 5min chart that calculates the high for the past 3 minutes and plot it. Is this possible?
    Josh P.NinjaTrader Customer Service

    #2
    We currently do not support multi-time frame indicators. However, you could possibly approximate this by running your indicator with CalculateOnBarClose = false and then storing the highest value seen every 3 min slice by just just using DateTime.Now etc...
    RayNinjaTrader Customer Service

    Comment


      #3
      Drats. I was hoping for a function like the one esignal has.

      highest(nLength, DataSeries)

      Oh well. I will give the DateTime thing a shot right now. Thanks Ray.
      Josh P.NinjaTrader Customer Service

      Comment


        #4
        The approach MAX(IDataSeries series, int period) does work for strategies, just not in the Indicator class at this time.
        RayNinjaTrader Customer Service

        Comment


          #5
          After much thought about how to implement DateTime.Now I don't think it is going to work. It can potentially work for incoming ticks, but for any historical data it simply can't be done to count 3 minutes because the DateTime.Now in accessing the historical data are all the same.

          Here is what I came up with, but its just not cutting it.
          Code:
          if(Bars.FirstBarOfSession)
          {
              time = Time[0];
              timecounter = time;
          }
          
          if (barcounter <= 1)
          {
              ticktimer = DateTime.Now;
          }
          else
          {
              prevticktimer = ticktimer;
              ticktimer = DateTime.Now;
          }
          
          if(timecounter < time.AddMinutes(Period))
          {
              if(high<High[0])
                  high = High[0];
              TimeSpan valuetoadd = ticktimer - prevticktimer;
              timecounter = timecounter.AddSeconds(valuetoadd.Minutes*60 + valuetoadd.Seconds);
          }
          
          DynamicR = high;
          Resistance.Set(DynamicR);
          Josh P.NinjaTrader Customer Service

          Comment


            #6
            Correct, for historical it can not be done.
            RayNinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            600 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            347 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            103 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            558 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            558 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X