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

Highest value bars ago < highest value bars ago

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

    Highest value bars ago < highest value bars ago

    Hi,

    I'm trying to code the following:

    Highest High value 10 bars ago is less than highest high value 30 bars ago

    (MAX(High, 10)[1] < MAX(High, 30)[11])

    The above code sounds logical to me but it doesn't work?

    #2
    Hello,

    Thank you for the question.

    Can I ask are you getting an error if you open Tools -> Output window when you run this code?

    I have tested the following and it works with no error,

    Code:
    if (CurrentBar < 11) return;
    if (MAX(High, 10)[1] < MAX(High, 30)[11])
    {
         Print("Do Something");
    }
    I did add the current bar check to prevent index errors, If you do not have this check in your script currently you would need to add it. essentially if you have not checked if the current bar is past 11, on bar 0 it will be looking for bar -11 which will never exist.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by gbourque, Today, 06:39 AM
    2 responses
    14 views
    0 likes
    Last Post gbourque  
    Started by rexsole, Today, 08:39 AM
    0 responses
    4 views
    0 likes
    Last Post rexsole
    by rexsole
     
    Started by trilliantrader, Yesterday, 03:01 PM
    3 responses
    30 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Started by cmtjoancolmenero, Yesterday, 03:58 PM
    4 responses
    26 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by Brevo, Today, 01:45 AM
    1 response
    14 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Working...
    X