Description Usage Arguments Details Value Methods Author(s) See Also Examples
Calculation of the exponentially smoothed trend as a technical trading indicator.
1 |
y |
Objects of classes: numeric, matrix, data.frame, ts, mts, and timeSeries are supported. |
lambda |
Numeric, the smoothing parameter for λ in the equation below. The value for the parameter must be in the interval 0 < λ < 1. |
init |
The initial value in the recursive calculation of the
filter. Specifies the initial values of the time series just prior to
the start value, in reverse time order. The default, i.e.
|
The exponetially smoothed trend is calculated according to the formula:
z_t = λ y_t + (1 - λ) * z_{t-1}
An object of the same class as y
, containing the computed
exponetially smoothed values.
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
,
trdsma
, trdwma
,
capser
1 2 3 4 5 | data(StockIndex)
y <- StockIndex[, "SP500"]
yret <- diff(log(y))
es <- trdes(yret, lambda = 0.95)
head(es)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.