Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Price breakout

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

    Price breakout

    Hi

    I'm trying to short a position when the close of the latest bar exceeds the highest high of the previous 20 bars.

    Please can someone tell me what is wrong with the below formula? It seems to be giving me zero results when I backtest it

    if (Close[0] > MAX(High[20])[0])

    EnterShort(DefaultQuantity, "");

    Ta
    Steve

    #2
    Hello lancasterstephen,

    Thanks for your post and welcome to the NinjaTrader forums!

    By using the bars ago index of [0] in both the close and the MAX() method you are comparing the close of the current bar to the High of the current bar through the previous 19 bars. At best the Close[0] of the current bar can only be equal to the High[0] of the current bar and can not exceed it.

    You will need to change your bars ago reference so that you are comparing the close of the current bar to the MAX() starting at the prior bar

    if (Close[0] > MAX(High[20])[1])

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    580 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    335 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    554 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    552 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X