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

Close > highest high of last 10 bars

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

    Close > highest high of last 10 bars

    How would I say..
    Close > highest high of last 10 bars

    is this correct?

    if(Close[0] > HighestBar(High, 10))

    #2
    Almost correct, but HighestBar() will return a bars ago value, not the actual high value.

    change it to something like this:

    if(Close[0] > High[HighestBar(High, 10)])



    Let me know if I can further assist.
    Last edited by NinjaTrader_Lance; 01-24-2014, 09:25 AM.
    LanceNinjaTrader Customer Service

    Comment


      #3
      Thanks and is there anyway to specify that the Highest high bar is on Index 0 or Index 1. Can I somehow get BarsArray[0] in there?

      Comment


        #4
        Try this:

        Highs[0][HighestBar(Highs[0], 10)]
        LanceNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by strategist007, Today, 07:51 PM
        0 responses
        2 views
        0 likes
        Last Post strategist007  
        Started by StockTrader88, 03-06-2021, 08:58 AM
        44 responses
        3,968 views
        3 likes
        Last Post jhudas88  
        Started by rbeckmann05, Today, 06:48 PM
        0 responses
        4 views
        0 likes
        Last Post rbeckmann05  
        Started by rhyminkevin, Today, 04:58 PM
        4 responses
        58 views
        0 likes
        Last Post dp8282
        by dp8282
         
        Started by iceman2018, Today, 05:07 PM
        0 responses
        6 views
        0 likes
        Last Post iceman2018  
        Working...
        X