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 CarlTrading, 03-31-2026, 09:41 PM
          1 response
          152 views
          1 like
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, 04-01-2026, 02:41 AM
          0 responses
          89 views
          1 like
          Last Post CarlTrading  
          Started by CaptainJack, 03-31-2026, 11:44 PM
          0 responses
          133 views
          2 likes
          Last Post CaptainJack  
          Started by CarlTrading, 03-30-2026, 11:51 AM
          0 responses
          127 views
          1 like
          Last Post CarlTrading  
          Started by CarlTrading, 03-30-2026, 11:48 AM
          0 responses
          107 views
          0 likes
          Last Post CarlTrading  
          Working...
          X