Visual Basic (Declaration) | |
---|---|
Public Overloads Shared Function GeometricMovingAverage( _ ByVal seriesName As String, _ ByVal s As Series, _ ByVal lengthOfMA As Integer _ ) As Series |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public static Series GeometricMovingAverage( string seriesName, Series s, int lengthOfMA ) |
Parameters
- seriesName
- The name of the series which will be displayed on the chart, i.e. its label.
- s
- A statistical series.
- lengthOfMA
- The number of periods over which the moving average is evaluated for each period.
Return Value
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. |