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

MAX/MIN limits

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

    MAX/MIN limits

    I am trying to use the MAX or MIN functions as part of an if condition to determine if a built-in indicator has attained at least a specified value over the past number of bars. For example,

    if MAX(MACD(4,5,3),5) > .05

    I get a message that the > operator cannot be used with MAX.

    How can I do this?

    #2
    Hi Richard,

    In case you may have not seen this, the following section of our Help Guide might be of some value.



    You are trying to compare the indicator to a value of 0.05 NOT the value of the indicator at a specific bar. It should be written as:

    if (MAX(MACD(4, 5, 3), 5)[0] > 0.05)
    // Do something

    Not the reference to the value of the indicator at the current bar by using [0].
    RayNinjaTrader Customer Service

    Comment


      #3
      You are very patient. Thank you for the help.

      Little by little some of this is sinking in. I have read the DataSeries reference several times, but when you are starting out it is very confusing. I'll keep working on it.

      Comment


        #4
        No problem Richard. What I have personally done in the past when challenged with new concepts is to start off with simple tasks and layer complexity on top of it. This has always helped keep the 'learning' under control.
        RayNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Brevo, Today, 01:45 AM
        0 responses
        6 views
        0 likes
        Last Post Brevo
        by Brevo
         
        Started by aussugardefender, Today, 01:07 AM
        0 responses
        3 views
        0 likes
        Last Post aussugardefender  
        Started by pvincent, 06-23-2022, 12:53 PM
        14 responses
        242 views
        0 likes
        Last Post Nyman
        by Nyman
         
        Started by TraderG23, 12-08-2023, 07:56 AM
        9 responses
        384 views
        1 like
        Last Post Gavini
        by Gavini
         
        Started by oviejo, Today, 12:28 AM
        0 responses
        6 views
        0 likes
        Last Post oviejo
        by oviejo
         
        Working...
        X