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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    77 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    40 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    63 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    63 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    53 views
    0 likes
    Last Post CarlTrading  
    Working...
    X