Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

What does "double" do in MAX?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    What does "double" do in MAX?

    I'm trying to figure out what the following code needs with double and what it does to the code. Help me understand?

    Code:
    [B]double [/B]value = MAX(High, 20)[0];

    #2
    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.

    Comment

    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 Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    324 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    545 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X