Calculates the Geometric Moving Average (GMA) for a given period for all possible data points (i.e. periods) for which there is sufficient historical data provided.
[Visual Basic]
Overloads Public Shared Function GeometricMovingAverage( _
ByVal seriesName As String, _
ByVal s As Series, _
ByVal lengthOfMA As Integer _
) As Series
[C#]
public static Series GeometricMovingAverage(
string seriesName,
Series s,
int lengthOfMA
);
A series where the first term corresponds to the Moving Average on the last period and the previous value is the value of the Moving average on the previous period and so on.
Exception | Description |
---|---|
ArgumentException | Thrown if the series is empty. |
StatisticalEngine Class | StatisticalEngine Members | Overload List | Simple Moving Average (MA)
2002 - 2005 Webavail Productions Inc. & Corporate Web Solutions Ltd.. All Rights Reserved.