Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Median from DataSeries

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

    Median from DataSeries

    Hello,

    I try to get get the maximum / minimum of the median from a dataseries. Unfortunately it seems not to work. How is it possible to code it?

    Code:
    AddDataSeries(BarsPeriodType.Day, 1);    // 
    double max = MAX(Median, Length)[0];
    double min = MIN(Median, Length)[0];
    Kind regards
    Gerik

    #2
    Hello Gerik,

    Thanks for your note.

    I see that you are adding an additional data series to your script and you would like to get the maximum and minimum median values from that added series.

    You would need to check the BarsInProgress value of that added series before accessing values from it. For example, you would check if BarsInProgress == 1 to ensure the first added series is the series that is processing, then you would call your MAX and MIN methods.

    Note the primary data series has a BarsInProgress value of 0, the first added secondary series has a BarsInProgress value of 1, a second added secondary series would have a BarsInProgress value of 2, and so on.

    See the help guide documentation below for more information.
    AddDataSeries: https://ninjatrader.com/support/help...dataseries.htm
    BarsInProgress: https://ninjatrader.com/support/help...inprogress.htm
    MAX: https://ninjatrader.com/support/help...aximum_max.htm
    MIN: https://ninjatrader.com/support/help...inimum_min.htm

    Let us know if we may assist further.
    <span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by NullPointStrategies, Today, 05:17 AM
    0 responses
    50 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    126 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    69 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    42 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    46 views
    0 likes
    Last Post TheRealMorford  
    Working...
    X