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

Maximum, Minimum daily

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

    Maximum, Minimum daily

    Hello,

    I can not find out how to plot on the chart the maximum price of a certain number of days in a minutechart or tickchart. I can plot the maximum price of the last n-bars of course, but I can´t change the indicator so that I get the maximum (and the minimum) of the last n-days in a 15-Min-Chart.

    Thank you for your help.

    Best regards
    Tony
    Last edited by tonynt; 09-05-2009, 06:58 AM.

    #2
    Tony, to get the max value for an entire chart, you could use:
    Code:
    double maxvalueonchart = MAX(Close, CurrentBar)[0];
    // for min just change MAX to MIN
    Using CurrentBar for the lookback period means that every single bar will be evaluated when looking for the max value.
    AustinNinjaTrader Customer Service

    Comment


      #3
      Maximum of x-days

      Thank you for your answer. But where can I set and define the days? How do I make the code when I want to have the maximum of the last 10 days in my 15-Min-Chart?
      Best regards
      Tony

      Comment


        #4
        You can set and define the days when you load the chart. If select 10 days, the code will get the max/min of the last 10 days. Please see the attached picture for details.

        If you want to code it all, stuff like this can quickly get complicated because of session breaks and weekends. This reference sample goes over the basics of DateTime and can help get you started.
        Attached Files
        AustinNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Segwin, 05-07-2018, 02:15 PM
        14 responses
        1,789 views
        0 likes
        Last Post aligator  
        Started by Jimmyk, 01-26-2018, 05:19 AM
        6 responses
        837 views
        0 likes
        Last Post emuns
        by emuns
         
        Started by jxs_xrj, 01-12-2020, 09:49 AM
        6 responses
        3,294 views
        1 like
        Last Post jgualdronc  
        Started by Touch-Ups, Today, 10:36 AM
        0 responses
        13 views
        0 likes
        Last Post Touch-Ups  
        Started by geddyisodin, 04-25-2024, 05:20 AM
        11 responses
        63 views
        0 likes
        Last Post halgo_boulder  
        Working...
        X