get_stock_analysis
Generate data-driven stock analysis reports for China's A-share market, covering fundamental, technical, or comprehensive insights based on stock code and analysis type.
Instructions
提供基于数据的股票分析报告,而非投资建议。
Args:
code: 股票代码,如'sh.600000'
analysis_type: 分析类型,可选'fundamental'(基本面)、'technical'(技术面)或'comprehensive'(综合)
Returns:
数据驱动的分析报告,包含关键财务指标、历史表现和同行业比较
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysis_type | No | fundamental | |
code | Yes |
Input Schema (JSON Schema)
{
"properties": {
"analysis_type": {
"default": "fundamental",
"title": "Analysis Type",
"type": "string"
},
"code": {
"title": "Code",
"type": "string"
}
},
"required": [
"code"
],
"title": "get_stock_analysisArguments",
"type": "object"
}