mroHigh = MRO((MAX(High, 10)[0]), 1, 20);
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
MRO + MAX/MIN functions
Collapse
X
-
MRO + MAX/MIN functions
I was hoping to have get advice on a code segment using the MRO and MAX or MIN functions something such as
Would this evaluate to find the most recent occurrence of the max high close price over the last 20 bars?Code:Tags: None
-
Hello MisterGee,
MRO() requires a lambda bool condition as the Func<bool> condition parameter, not a double.
Perhaps you want HighestBar?
https://ninjatrader.com/support/help...highestbar.htm
https://ninjatrader.com/support/foru...96#post1113896Chelsea B.NinjaTrader Customer Service
-
Thank you Chelsea, that is helpful. I will play with this tonight and see if it works for me.
I would like to find, for example, the most recent highest bar and compare it's value to the second most recent highest bar value. -- if this changes your response at all?
Comment
-
Hello MisterGee,
HighestBar could find the most recent occurrence of the max high close price over the last 20 bars as you inquired in your first inquiry.
Finding the "the second most recent highest bar value" would require custom logic.
With MRO you could find the previous recent bar that had that same high by providing a lambda condition and not a double.. (() => High[0] == MAX(High, 20)[0])Chelsea B.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
89 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
152 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
80 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
53 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
63 views
0 likes
|
Last Post
|

Comment