monthly_return | R Documentation |
This function takes a numeric vector of asset returns and computes monthly returns.
monthly_return(vec)
vec |
a numeric vector of asset returns. |
A numeric vector of monthly returns.
The input data must be an xts object with dates as rownames.
weekly_return
, annual_return
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.