action portfoliooptimizer_post_portfolio_optimization_equal_weighted { label: "Equal Weighted Portfolio" description: "Compute the asset weights of the equal-weighted portfolio.\n\nReferences\n * [Victor DeMiguel and al., Optimal Versus Naive Diversification: How Inefficient is the 1/N Portfolio Strategy?](https://academic.oup.com/rfs/article-abstract/22/5/1915/1592901?redirectedFrom=fulltext)\n" provider: portfoliooptimizer method: POST path: "/portfolio/optimization/equal-weighted" encoding: json input: { type: "object" required: ["assets"] properties: { assets: { type: "integer" description: "The number of assets" } } } output: { type: "object" required: ["assetsWeights"] properties: { assetsWeights: { type: "array" description: "assetsWeights[i] is the weight of the asset i in the portfolio, in percentage" items: { type: "number" } } } } }