Announcement

Collapse
No announcement yet.

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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        574 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        333 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
        553 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