action portfoliooptimizer_post_portfolio_analysis_sharpe_ratio_probabilistic_minimum_track { label: "Minimum Track Record Length" description: "Compute the minimum track record length of one or several portfolio(s).\n\nReferences\n* [Bailey, David H. and Lopez de Prado, Marcos, The Sharpe Ratio Efficient Frontier (April 1, 2012). Journal of Risk, Vol. 15, No. 2, Winter 2012/13](https://ssrn.com/abstract=1821643)\n" provider: portfoliooptimizer method: POST path: "/portfolio/analysis/sharpe-ratio/probabilistic/minimum-track-record-length" encoding: json input: { type: "object" } output: { type: "object" required: ["portfolios"] properties: { portfolios: { type: "array" items: { type: "object" required: ["portfolioSharpeRatioMinimumTrackRecordLength"] properties: { portfolioSharpeRatioMinimumTrackRecordLength: { type: "number" description: "The minimum track record length of the portfolio, in number of required arithmetic returns, possibly equal to null in case the minimum track record length does not exist" } } } } } } }