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
            Parameters
- s
 
- A series where the first term is the most recent historical price, 
            the second term is the previous historical price and so on.
            
 - elementValue
 
- Specifies the particular element value (for example  High, Low, Close or Open of
            the financial time series) which will be considered within this indicator evaluation. In particular, 
            if you wish to use the element value high then you should pass the parameter
            High. In a similarly fashion if you wish to
            use the low, close or open, then you should pass the parameter
            Low, Close,
            Open, respectively.
 - 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
            
            
            
            
            
            Remarks
            
            
            
See Also