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 ttrader23, 05-08-2024, 09:04 AM
        9 responses
        40 views
        0 likes
        Last Post ttrader23  
        Started by ZeroKuhl, Yesterday, 04:31 PM
        8 responses
        43 views
        0 likes
        Last Post ZeroKuhl  
        Started by reynoldsn, Today, 07:04 PM
        0 responses
        8 views
        0 likes
        Last Post reynoldsn  
        Started by puapwr, Today, 06:09 PM
        0 responses
        4 views
        0 likes
        Last Post puapwr
        by puapwr
         
        Started by franciscog21, Today, 05:27 PM
        0 responses
        13 views
        0 likes
        Last Post franciscog21  
        Working...
        X