Returns the Median Moving Average of a given period of the data series provided for all possible periods for the data given.
[Visual Basic]
Overloads Public Shared Function MedianMovingAverage( _
ByVal highSeries As Series, _
ByVal lowSeries As Series, _
ByVal lengthOfMA As Integer _
) As Series
[C#]
public static Series MedianMovingAverage(
Series highSeries,
Series lowSeries,
int lengthOfMA
);
A series where the first term is the value of the Median Moving Average for the most recent period, the second term is the value of the Median Moving Average for the previous period and so on.
Exception | Description |
---|---|
ArgumentException | Thrown if the series highSeries and lowSeries are of different lengths or if one of these arrays is empty. |
StatisticalEngine Class | StatisticalEngine Members | Overload List
2002 - 2005 Webavail Productions Inc. & Corporate Web Solutions Ltd.. All Rights Reserved.