cumulated {timeSeries} | R Documentation |
Compute cumulated financial series, e.g. prices or indexes, from financial returns.
cumulated(x, ...) ## Default S3 method: cumulated(x, method = c("continuous", "discrete", "compound", "simple"), percentage = FALSE, ...)
method |
a character string naming the method how the returns were computed. |
percentage |
a logical value. By default |
x |
an object of class |
... |
arguments to be passed. |
Note, the function cumulated
assumes as input discrete
returns from a price or index series. Only then the cumulatrd
series agrees with the original price or index series. The
first values of the cumulated series cannot be computed, it
is assumed that the series is indexed to 1.
returns a time series object of the same class as
the input argument x
.
## Use the Microsofts' Close Prices Indexed to 1 - MSFT.CL <- MSFT[, "Close"] MSFT.CL <- MSFT.CL/MSFT[[1, "Close"]] head(MSFT.CL) ## Compute Discrete Return - MSFT.RET <- returns(MSFT.CL, method = "discrete") ## Cumulative Series and Compare - MSFT.CUM <- cumulated(MSFT.RET, method = "discrete") head(cbind(MSFT.CL, MSFT.CUM))