Description Usage Arguments Value Methods Author(s) Examples
Either continuous returns or discrete returns can be converted into the other type.
1 | returnconvert(y, convdir = c("cont2disc", "disc2cont"), percentage = TRUE)
|
y |
Objects of classes: numeric, matrix, data.frame, ts, mts, and timeSeries are supported. |
convdir |
Character, the type of return conversion. |
percentage |
Logical, if |
An object of the same class as y
, containing the converted returns.
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 returns.
The calculation is applied per column of the timeSeries object and an object of the same class is returned.
Calculation of the returns. The attributes are preserved and an object of the same class is returned.
Calculation of the returns. The attributes are preserved and an object of the same class is returned.
Calculation of the returns. The attributes are preserved and an object of the same class is returned.
Bernhard Pfaff
1 2 3 4 5 6 7 | data(StockIndex)
yc <- diff(log(StockIndex[, "SP500"])) * 100
yd <- returnseries(StockIndex[, "SP500"], method = "discrete",
percentage = TRUE, trim = TRUE)
yconv <- returnconvert(yd, convdir = "disc2cont",
percentage = TRUE)
all.equal(yc, yconv)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.