Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Lowest/highest prices n days back

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

    Lowest/highest prices n days back

    Can you point me in the right direction:
    I want to find, on an intraday chart, the lowest and highest prices of the last n days not including today's session

    #2
    Hello,

    You can use MAX and MIN to get the highest value and lowest value over N number of bars.





    I'm also including a reference on Referencing the correct bar for more information:

    MatthewNinjaTrader Product Management

    Comment


      #3
      I don't understand

      If I'm on, let's say a 5 min chart, and I want to find the highest and lowest prices of the last 3 days, not including today, how do I know how many bars to look back?

      Comment


        #4
        You can Add() a Daily bar to your chart and use that as the data series

        Code:
                protected override void Initialize()
                {
         	         Add(PeriodType.Day, 1);
        	}
        
        
                protected override void OnBarUpdate()
                {
                 	if(CurrentBars[1] < 0 || CurrentBars[0] < 1)
        			return;
        
                         double highest = MAX(BarsArray[1], 3)[0];
        		double lowest  = MIN(BarsArray[1], 3)[0];
        						
        		Print("The Highest Price of the last 3 days was : " + highest);
        		Print("The Lowest Price of the last 3 days was : " + lowest);
        
                 }
        As long as you're running this on COBC = true, it will exclude today's session and look back on the past 3 bars for the daily series.
        MatthewNinjaTrader Product Management

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by The_Sec, Today, 02:29 PM
        0 responses
        1 view
        0 likes
        Last Post The_Sec
        by The_Sec
         
        Started by tsantospinto, 04-12-2024, 07:04 PM
        4 responses
        62 views
        0 likes
        Last Post aligator  
        Started by michi08, 10-05-2018, 09:31 AM
        3 responses
        740 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by sightcareclickhere, Today, 01:55 PM
        0 responses
        1 view
        0 likes
        Last Post sightcareclickhere  
        Started by Mindset, 05-06-2023, 09:03 PM
        9 responses
        259 views
        0 likes
        Last Post ender_wiggum  
        Working...
        X