fundPerformance
Analyze fund performance metrics including returns, volatility, Sharpe ratio, and maximum drawdown to evaluate investment performance across different time periods.
Instructions
基金业绩:近1年、3年、今年、成立以来的业绩指标,包括:收益率、年化收益率、年化波动、夏普比率、最大回撤、年化超额、信息比率
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | 基金代码或基金名称 |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "基金代码或基金名称",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}