Simple moving average.
[Visual Basic] Public Function Sma( _ ByVal period As Integer _ ) As Timeseries [C#] public Timeseries Sma( int period ); [C++] public: Timeseries* Sma( int period ); [JScript] public function Sma( int period ): Timeseries;
A new time series with a variable named "SMA_x" where x is the period.
Timeseries Class | TA.Lib Namespace