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 lightsun47, Today, 03:51 PM
    0 responses
    5 views
    0 likes
    Last Post lightsun47  
    Started by 00nevest, Today, 02:27 PM
    1 response
    9 views
    0 likes
    Last Post 00nevest  
    Started by futtrader, 04-21-2024, 01:50 AM
    4 responses
    46 views
    0 likes
    Last Post futtrader  
    Started by Option Whisperer, Today, 09:55 AM
    1 response
    14 views
    0 likes
    Last Post bltdavid  
    Started by port119, Today, 02:43 PM
    0 responses
    9 views
    0 likes
    Last Post port119
    by port119
     
    Working...
    X