Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How do you find the HighestBar() not including the current bar?
Collapse
X
-
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"Tags: None
-
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
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.Code:MRO(delegate {return HighestBar(High, 10) != 0;}, 1, 10);Josh P.NinjaTrader Customer Service
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
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment