action portfoliooptimizer_post_portfolio_analysis_alpha { label: "Alpha" description: "Compute the Jensen’s alpha of one or several portfolio(s) in the Capital Asset Pricing Model (CAPM).\n\nReferences\n* Carl R. Bacon, Practical Portfolio Performance Measurement and Attribution \n" provider: portfoliooptimizer method: POST path: "/portfolio/analysis/alpha" encoding: json input: { type: "object" } output: { type: "object" required: ["portfolios"] properties: { portfolios: { type: "array" items: { type: "object" required: ["portfolioAlpha"] properties: { portfolioAlpha: { type: "number" description: "The portfolio Jensen's alpha, which correponds to the portfolio excess return adjusted for the systematic risk in the Capital Asset Pricing Model (CAPM)" } } } } } } }