dotnetCHARTING Send comments on this topic.
SimpleMovingAverage(Series,Int32) Method
See Also 
dotnetCHARTING Namespace > StatisticalEngine Class > SimpleMovingAverage Method : SimpleMovingAverage(Series,Int32) Method


s
A statistical series.
lengthOfMA
The number of periods considered within the evaluation of the moving average for each of the periods on which it can be evaluated.
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.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function SimpleMovingAverage( _
   ByVal s As Series, _
   ByVal lengthOfMA As Integer _
) As Series
Visual Basic (Usage)Copy Code
Dim s As Series
Dim lengthOfMA As Integer
Dim value As Series
 
value = StatisticalEngine.SimpleMovingAverage(s, lengthOfMA)
C# 
public static Series SimpleMovingAverage( 
   Series s,
   int lengthOfMA
)

Parameters

s
A statistical series.
lengthOfMA
The number of periods considered within the evaluation of the moving average for each of the periods on which it can be evaluated.

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.

Exceptions

ExceptionDescription
ArgumentExceptionThrown if the series is empty.

See Also

© 2010 All Rights Reserved.