Calculates the arithmetic(or simple) Moving Average(MA) of 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 SimpleMovingAverage( _
ByVal seriesName As String, _
ByVal s As Series, _
ByVal elementValue As ElementValue, _
ByVal lengthOfMA As Integer _
) As Series
[C#]
public static Series SimpleMovingAverage(
string seriesName,
Series s,
ElementValue elementValue,
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. |
If we are considering a traded asset and the periods considered are days then by
passing an array containing the closing daily prices of a given asset, and by choosing
to use the 5-day moving average (i.e. passing a length of the MA of 5
),
then this method will evaluate the Moving Average (MA) for all days for which the closing
price on that day and the four previous days is known.
FinancialEngine Class | FinancialEngine Members | Overload List
2002 - 2005 Webavail Productions Inc. & Corporate Web Solutions Ltd.. All Rights Reserved.