getreturns.Rd
Calculate returns or log-returns for multivariate time series
getreturns(x, type = c("basic", "log"))
Multivariate time series
Type of return: basic return ("basic") or log-return ("log")
The returns
returns <- getreturns(EuStockMarkets)
log_returns <- getreturns(EuStockMarkets,
type = "log")
par(mfrow=c(1, 3))
matplot(EuStockMarkets, type = 'l', main = "Closing Prices of \n European stocks (1991-1998)",
xlab = "time")
matplot(returns, type = 'l', main = "Returns", xlab = "time")
matplot(log_returns, type = 'l', main = "Log-returns", xlab = "time")