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

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])
    Paul H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by cre8able, Today, 01:01 PM
    0 responses
    2 views
    0 likes
    Last Post cre8able  
    Started by manitshah915, Today, 12:59 PM
    0 responses
    2 views
    0 likes
    Last Post manitshah915  
    Started by ursavent, Today, 12:54 PM
    0 responses
    3 views
    0 likes
    Last Post ursavent  
    Started by Mizzouman1, Today, 07:35 AM
    3 responses
    17 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by RubenCazorla, Today, 09:07 AM
    2 responses
    13 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Working...
    X