Does anyone know whether it is possible to get the min or max values of an entire data series painted on the chart? Specifically, I'd like to get the highest high, of all the bars painted, and if at all possible I'd like to get it done in OnStartUp() method. I have tried using MAX but during OnStartUp() the last bar painted does not seem to yet exist.Thanks for any input.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Min/Max Values of Painted DataSeries
Collapse
X
-
Min/Max Values of Painted DataSeries
Hi,
Does anyone know whether it is possible to get the min or max values of an entire data series painted on the chart? Specifically, I'd like to get the highest high, of all the bars painted, and if at all possible I'd like to get it done in OnStartUp() method. I have tried using MAX but during OnStartUp() the last bar painted does not seem to yet exist.Thanks for any input.Tags: None
-
It would not be possible to gather this information OnStartUp() as this is only ran on the first bar on the chart (current bar = 0)
You will need to run this OnBarUpdate()
Code:int period = Count; double highest = MAX(High, period)[0]; double lowest = MIN(Low, period)[0]; Print(highest); Print(lowest);
MatthewNinjaTrader Product Management
-
Thanks Mathew. So if OnStartUP() runs only on the first bar, how can I access the entire data series painted on the chart without walking through it bar by bar? Or do I have to walk through bar by bar? I really want to know the highest High of the entire series and then scale on the basis of this highest High.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
577 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