Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Retrieving Highest Highs from any period

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

    Retrieving Highest Highs from any period

    What is the best way of retrieving the Highest High from the bars:
    High[20] to High[45]

    From a performance perspective I would prefer not to set up a looping method ( for (int index = 20; 45; index++). I was hoping someone would know of a more efficient way.

    Thanks

    #2
    MAX(High, 25)[20]
    RayNinjaTrader Customer Service

    Comment


      #3
      Thanks.

      Can't believe I did not think of that.

      Comment


        #4
        Using MAX or MIN for multi-timeframe

        Hi,
        Ok, I have figured out how to use MAX and MIN to find highest high and lowest low for a lookback period.

        I could not figure out if I can use MAX and MIN in a multitime frame stretegy. For example if I add a 5 minute and a 30 minute bars objects by using following commands.

        Add(PeriodType.Minute, 5);

        Add(PeriodType.Minute, 30);

        How can I use MAX to find, lets say Highest high for last 10 of 30 minutes bars?

        Thanks.

        Comment


          #5
          Sure you can just use MAX() within the corresponding BarsInProgress context.

          if (BarsInProgress == 1)
          MAX(...) will give you the MAX within the secondary bar object.

          You can also try something like MAX(Highs[2], 10)[0]
          Last edited by NinjaTrader_JoshP; 07-27-2008, 03:52 PM.
          Josh P.NinjaTrader Customer Service

          Comment


            #6
            Thanks for your helpful reply.

            Actually I was trying to use something like ** MAX(High[1][2], 10)[0] ** instead of ** MAX(Highs[2], 10)[0] ** as you have suggested.

            It never crossed my mind to use 'Highs' instead of 'High'.

            Problem solved.

            Comment


              #7
              Lowest High of 4 consecutive bars at a swing high

              i'm trying to figure out how to write this condition for swing high and lows
              Attached Files

              Comment


                #8
                Use MIN(Low, 20)[0].
                Josh P.NinjaTrader Customer Service

                Comment

                Latest Posts

                Collapse

                Topics Statistics Last Post
                Started by Geovanny Suaza, 02-11-2026, 06:32 PM
                0 responses
                578 views
                0 likes
                Last Post Geovanny Suaza  
                Started by Geovanny Suaza, 02-11-2026, 05:51 PM
                0 responses
                334 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
                554 views
                1 like
                Last Post Geovanny Suaza  
                Started by RFrosty, 01-28-2026, 06:49 PM
                0 responses
                551 views
                1 like
                Last Post RFrosty
                by RFrosty
                 
                Working...
                X