Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
maximum and minimum with minimum of 4 data
Collapse
X
-
maximum and minimum with minimum of 4 data
maximum and minimum with minimum of 4 data try in several ways and I can not get the maximum attached the code for helpTags: None
-
Hello TraderElegante,
Thanks for your post.
Between the code formatting and what is written in the script, I am not sure what you are trying to do.
Could you elaborate and explain in plain English what you are trying to accomplish specifically?
If you want to find the maximum value from a Series, I.E. the Highest High, it would be done like:
MAX(Series, NumberOfPreviousBarsToInclude)[HowManyBarsAgo]
I.E.
MAX(High, 5)[0] would return the highest high of the last five bars, checking from the current bar that is processing.
MAX(High, 5)[0] would return the highest high of the last five bars, checking from the last bar that was processed.
MAX - https://ninjatrader.com/support/help...aximum_max.htm
We look forward to assisting.
-
if I did that way but I did graph in the price panel .. I did not want to use the MAX function but to try to do it with code to learn it is that I am new to C # .. the idea is I want to find the maximum ocsilator when it is> 0 , but to calculate the maximum use at least 4 bars.Originally posted by NinjaTrader_Jim View PostHello TraderElegante,
Thanks for your post.
Between the code formatting and what is written in the script, I am not sure what you are trying to do.
Could you elaborate and explain in plain English what you are trying to accomplish specifically?
If you want to find the maximum value from a Series, I.E. the Highest High, it would be done like:
MAX(Series, NumberOfPreviousBarsToInclude)[HowManyBarsAgo]
I.E.
MAX(High, 5)[0] would return the highest high of the last five bars, checking from the current bar that is processing.
MAX(High, 5)[0] would return the highest high of the last five bars, checking from the last bar that was processed.
MAX - https://ninjatrader.com/support/help...aximum_max.htm
We look forward to assisting.
Comment
-
Hello TraderElegante,
Our role is to support our product, not really to teach customers how to program with C#. There are many online resources external to NinjaTrader, including formal programming classes that we would suggest looking into if you are looking for C# education.
I would suggest MAX/MIN for usage purposes, and to generate code using the Strategy Builder's View Code button after you create a condition using MAX or MIN, so you can see what the syntax looks like when the Strategy Builder generates the code.
MAX and MIN are also open source. You may reference the source code for these indicators to see how they loop over bars to derive a maximum or minimum with C#.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
333 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