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 charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    52 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    142 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    160 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    96 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    276 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X