get_market_analysis_timeframe
Determine the optimal timeframe for market analysis on China's A-share market using real-time data. Options include recent months, quarters, or years for accurate analysis.
Instructions
获取适合市场分析的时间范围,基于当前真实日期而不是训练数据。
这个工具应该在进行市场分析或大盘分析时首先调用,以确保使用最新的实际数据。
Args:
period: 时间范围类型,可选值:
"recent": 最近1-2个月(默认)
"quarter": 最近一个季度
"half_year": 最近半年
"year": 最近一年
Returns:
包含分析时间范围的详细描述字符串,格式为"YYYY年M月-YYYY年M月"。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
period | No | recent |
Input Schema (JSON Schema)
{
"properties": {
"period": {
"default": "recent",
"title": "Period",
"type": "string"
}
},
"title": "get_market_analysis_timeframeArguments",
"type": "object"
}