Description Usage Arguments Value Methods Author(s) See Also Examples
Calculation of a right ended simple moving average with equal weights
determined by n.periods
.
1 |
y |
Objects of classes: numeric, matrix, data.frame, ts, mts, and timeSeries are supported. |
n.periods |
Integer, the number of periods to be included in the calculation of the simple moving average. |
trim |
Logical, if |
An object of the same class as y
, containing the computed
simple moving averages.
The calculation is applied per column of the data.frame and only if all columns are numeric.
The calculation is applied per column of the matrix.
The calculation is applied per column of the mts object. The attributes are preserved and an object of the same class is returned.
Calculation of the es trend.
The calculation is applied per column of the timeSeries object and an object of the same class is returned.
Calculation of the es trend. The attributes are preserved and an object of the same class is returned.
Calculation of the es trend. The attributes are preserved and an object of the same class is returned.
Calculation of the es trend. The attributes are preserved and an object of the same class is returned.
Bernhard Pfaff
filter
, trdbilson
,
trdbinary
, trdhp
,
trdwma
, capser
,
trdes
1 2 3 4 | data(StockIndex)
y <- StockIndex[, "SP500"]
sma <- trdsma(y, n.periods = 24)
head(sma, 30)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.