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 cmoran13, 04-16-2026, 01:02 PM
        0 responses
        43 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        25 views
        0 likes
        Last Post PaulMohn  
        Started by CarlTrading, 03-31-2026, 09:41 PM
        1 response
        162 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        98 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        157 views
        2 likes
        Last Post CaptainJack  
        Working...
        X