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 bmartz, 03-12-2024, 06:12 AM
        4 responses
        31 views
        0 likes
        Last Post bmartz
        by bmartz
         
        Started by Aviram Y, Today, 05:29 AM
        4 responses
        12 views
        0 likes
        Last Post Aviram Y  
        Started by algospoke, 04-17-2024, 06:40 PM
        3 responses
        28 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by gentlebenthebear, Today, 01:30 AM
        1 response
        8 views
        0 likes
        Last Post NinjaTrader_Jesse  
        Started by cls71, Today, 04:45 AM
        1 response
        7 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Working...
        X