monthly_return {StockDistFit} | R Documentation |
Compute Monthly Returns of a Vector.
Description
This function takes a numeric vector of asset returns and computes monthly returns.
Usage
monthly_return(vec)
Arguments
vec |
a numeric vector of asset returns. |
Value
A numeric vector of monthly returns.
Note
The input data must be an xts object with dates as rownames.
See Also
Examples
# Compute monthly returns of an asset vector
require(xts)
asset_returns_xts <- xts(c(29.2, 30.0, 36.2, 30.4, 38.5, -35.6, 34.5),
order.by = as.Date(c("2022-05-02", "2022-06-02", "2022-07-02",
"2022-08-02", "2022-09-02", "2022-10-02",
"2022-11-02")))
monthly_return(asset_returns_xts)
[Package StockDistFit version 1.0.0 Index]