Visual Basic (Declaration) | |
---|---|
Overloads Public Shared Function GeometricMovingAverage( _ ByVal sc As SeriesCollection, _ ByVal lengthOfMA As Integer _ ) As SeriesCollection |
Visual Basic (Usage) | ![]() |
---|---|
|
C# | |
---|---|
public static SeriesCollection GeometricMovingAverage( SeriesCollection sc, int lengthOfMA ) |
C++/CLI | |
---|---|
public: static SeriesCollection^ GeometricMovingAverage( SeriesCollection^ sc, int lengthOfMA ) |
Parameters
- sc
- A collection of series objects. For example, to evaluate this indicator for two series you will need to pass a series collection containing this two 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. |