list_portfolios
Retrieve all stored portfolios with their key metrics and metadata to view investment summaries and analyze performance data.
Instructions
List all stored portfolios with summary information.
Returns a list of all portfolios in the store with their key metrics and metadata.
Returns: Dictionary containing: - portfolios: List of portfolio summaries - count: Number of portfolios
Example:
result = list_portfolios()
for pf in result['portfolios']:
print(f"{pf['name']}: Sharpe={pf['metrics']['sharpe']:.2f}")
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||