Announcement

Collapse
No announcement yet.

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.

    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
    87 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    131 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
    106 views
    0 likes
    Last Post CarlTrading  
    Working...
    X