Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How do you find the HighestBar() not including the current bar?

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

    How do you find the HighestBar() not including the current bar?

    What is the syntax for finding the highest bar "not including the current bar"? I expected "private int highbar = HighestBar(High,10)[1]" to work but I get a compile error saying " cannont apply indexing to an expression of type int"

    #2
    Right. You can't use [] with HighestBar(). What you can try doing is putting HighestBar() inside MRO(). http://www.ninjatrader-support.com/H...urenceMRO.html

    Code:
    MRO(delegate {return HighestBar(High, 10) != 0;}, 1, 10);
    I haven't tried this code, but I think it should work. Give it a try. You may or may not want to tweak the lookback period.
    Josh P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    576 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    334 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    553 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    551 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X