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 CortexZenUSA, Today, 12:53 AM
    0 responses
    1 view
    0 likes
    Last Post CortexZenUSA  
    Started by CortexZenUSA, Today, 12:46 AM
    0 responses
    1 view
    0 likes
    Last Post CortexZenUSA  
    Started by usazencortex, Today, 12:43 AM
    0 responses
    5 views
    0 likes
    Last Post usazencortex  
    Started by sidlercom80, 10-28-2023, 08:49 AM
    168 responses
    2,266 views
    0 likes
    Last Post sidlercom80  
    Started by Barry Milan, Yesterday, 10:35 PM
    3 responses
    13 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Working...
    X