generate_optimized_verdict
Optimize a portfolio and return backtest metrics plus a final verdict.
Args:
tickers: List of ticker symbols (e.g. ["AAPL", "RELIANCE.NS"])
amount: Investment amount used for allocation context
optimize_type: Optimization mode. Supported values are:
"mvo", "hrp", "max_sharpe", "min_volatility",
"black_litterman", "cvar", "semivariance".
period: History window for price data, e.g. "1y", "2y", "5y", "10y"
(default "2y"). Longer windows give the optimizer and backtest
more data at the cost of a slower fetch.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| amount | No | ||
| period | No | 2y | |
| tickers | Yes | ||
| optimize_type | No | mvo |