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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
73 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
39 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
63 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
63 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
53 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment