Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Retrieving Highest Highs from any period
Collapse
X
-
Retrieving Highest Highs from any period
What is the best way of retrieving the Highest High from the bars:
From a performance perspective I would prefer not to set up a looping method ( for (int index = 20; 45; index++). I was hoping someone would know of a more efficient way.High[20] to High[45]
ThanksTags: None
-
Using MAX or MIN for multi-timeframe
Hi,
Ok, I have figured out how to use MAX and MIN to find highest high and lowest low for a lookback period.
I could not figure out if I can use MAX and MIN in a multitime frame stretegy. For example if I add a 5 minute and a 30 minute bars objects by using following commands.
Add(PeriodType.Minute, 5);
Add(PeriodType.Minute, 30);
How can I use MAX to find, lets say Highest high for last 10 of 30 minutes bars?
Thanks.
Comment
-
Sure you can just use MAX() within the corresponding BarsInProgress context.
if (BarsInProgress == 1)
MAX(...) will give you the MAX within the secondary bar object.
You can also try something like MAX(Highs[2], 10)[0]Last edited by NinjaTrader_JoshP; 07-27-2008, 03:52 PM.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
579 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
554 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