[B]double [/B]value = MAX(High, 20)[0];
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
What does "double" do in MAX?
Collapse
X
-
Hello jertrade,
Thanks for your post.
In your code example of double value = MAX(High, 20)[0];
The "double" is creating a local variable called value that is the variable type double which is a floating point type number, here is an internet link to the definition of the C# double type: https://docs.microsoft.com/en-us/dot...-numeric-types
The MAX() method will provide the maximum (in this case) of the High data series of the last 20 bars (including the current bar [0]): Reference: https://ninjatrader.com/support/help...aximum_max.htm The maximum value is then assigned to the variable called value.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
557 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 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
545 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment