action portfoliooptimizer_post_assets_volatility { label: "Volatility" description: "Compute the volatility (i.e., standard deviation) of one or several asset(s) from either: \n* The asset returns\n* The asset covariance matrix\n* The asset variance(s)\n\nReferences\n* [Wikipedia, Standard Deviation](https://en.wikipedia.org/wiki/Standard_deviation)\n" provider: portfoliooptimizer method: POST path: "/assets/volatility" encoding: json input: { type: "object" } output: { type: "object" required: ["assets"] properties: { assets: { type: "array" items: { type: "object" required: ["assetVolatility"] properties: { assetVolatility: { type: "number" description: "The volatility of the asset" } } } } } } }