Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Select only positive or negative bars

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

    Select only positive or negative bars

    Hi,

    i have look for this in the guide and forum but I didn't find nothing about this request.

    I need a code to select, in the last 20 bars, the range of positive and negative bar.

    There is a NT7 command to do this ?

    Thanks a lot.

    Luca

    #2
    Hello Luca,

    Thank you for your note.

    You would want to use MIN and MAX to determine those values and then calculate the range.

    Example of what you are looking for -
    Code:
    positiveValue = MAX(High, 20)[0];
    negativeValue = MIN(Low, 20)[0];
    
    range1 = postiviveValue - negativeValue;
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      Thanks for you code, but in this way i can see only how long the range is in last 20 bars.

      I need of this ... for example:
      in uptrend i can find 13 positive bars and 7 negative bars.
      The question is : how long is the average range of 13 positive bars? and 7 negative bars?
      I didn't find a comand or code to do this.

      Comment


        #4
        If you can find the Positive and Negative, I would then assign the high and low values particular to those of the Positive and Negative bars to variables that you want and run the same range calculation that I provided.

        range1 = postiviveValue - negativeValue;
        Cal H.NinjaTrader Customer Service

        Comment


          #5
          Originally posted by sniper View Post
          Thanks for you code, but in this way i can see only how long the range is in last 20 bars.

          I need of this ... for example:
          in uptrend i can find 13 positive bars and 7 negative bars.
          The question is : how long is the average range of 13 positive bars? and 7 negative bars?
          I didn't find a comand or code to do this.
          There is no command to to what you want. You would have to write the necessary code. The quick and dirty way would be to use a for loop, albeit there are more efficient ways.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Geovanny Suaza, 02-11-2026, 06:32 PM
          0 responses
          633 views
          0 likes
          Last Post Geovanny Suaza  
          Started by Geovanny Suaza, 02-11-2026, 05:51 PM
          0 responses
          364 views
          1 like
          Last Post Geovanny Suaza  
          Started by Mindset, 02-09-2026, 11:44 AM
          0 responses
          105 views
          0 likes
          Last Post Mindset
          by Mindset
           
          Started by Geovanny Suaza, 02-02-2026, 12:30 PM
          0 responses
          567 views
          1 like
          Last Post Geovanny Suaza  
          Started by RFrosty, 01-28-2026, 06:49 PM
          0 responses
          568 views
          1 like
          Last Post RFrosty
          by RFrosty
           
          Working...
          X