I have a returns xts object like
retornos_categorias <- an xts object with 20 columns where each column is a return vector
assets <- colnames(retornos_categorias)
portfolio.init <- portfolio.spec(assets)
portfolio.init <- add.constraint(portfolio.init, type = "full_investment")
portfolio.minSD <- add.objective(portfolio = portfolio.init, type="risk", name="StdDev")
portfolio.minSD.opt <- optimize.portfolio(retornos_categorias, portfolio = portfolio.minSD, optimize_method = "ROI_old", trace = TRUE)
When I use optimize.portfolio from PortfolioAnalytics package I get this error:
Error in gmv_opt(R = R, constraints = constraints, moments = moments, :
paste0("package:", plugin) %in% search() || requireNamespace(plugin, .... is not TRUE
Someone else get this error? someone knows why I get that and how to fix it?
Thanks!
You very likely miss (i.e. need to install) a package, such as
ROI
or one of its plugins. But without a more complete example, it is hard to tell.Response to the update: It's still not a reproducible example. You don't show the data, and you don't load/attach the required packages. Here is a reproducible example, and it works on my system. "It works" here means that it runs without an error; I did not inspect the results.
As data, I use a dataset from Kenneth French's website. Try to debug your code and find out what value
plugin
has; it should be the name of the missing package.The function
sessionInfo
tells you what R and package versions have been used.