powered by
Calculation of a right ended weighted moving average with weights according to weights.
weights
trdwma(y, weights, trim = FALSE)
An object of the same class as y, containing the computed weighted moving averages.
y
Objects of classes: numeric, matrix, data.frame, ts, mts, and timeSeries are supported.
Numeric, a vector containing the weights.
Logical, if FALSE (the default) the first value is set to NA, otherwise the object is trimmed by the first obeservation.
FALSE
NA
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.
Bernhard Pfaff
If the sum of the weights is greater than unity, a warning is issued.
filter, trdbilson, trdbinary, trdhp, trdes, trdsma, capser
filter
trdbilson
trdbinary
trdhp
trdes
trdsma
capser
data(StockIndex) y <- StockIndex[, "SP500"] wma <- trdwma(y, weights = c(0.4, 0.3, 0.2, 0.1)) head(wma, 30)
Run the code above in your browser using DataLab