action portfoliooptimizer_post_portfolio_analysis_return { label: "Arithmetic Return" description: "Compute the arithmetic return of one or several portfolio(s) from either: \n* Portfolio assets arithmetic returns\n* Portfolio values\n\nReferences\n* [Wikipedia, Rate of Return](https://en.wikipedia.org/wiki/Rate_of_return#Return)\n* Harry M. Markowitz, Portfolio Selection, Efficient Diversification of Investments, Second edition, Blackwell Publishers Inc.\n" provider: portfoliooptimizer method: POST path: "/portfolio/analysis/return" encoding: json input: { type: "object" } output: { type: "object" required: ["portfolios"] properties: { portfolios: { type: "array" items: { type: "object" required: ["portfolioReturn"] properties: { portfolioReturn: { type: "number" description: "The arithmetic return of the portfolio" } } } } } } }