get_latest_market_data
Retrieve real-time stock data for specified codes and periods using the XTQuantAI MCP server, enabling AI-driven access to trading insights.
Instructions
获取最新行情数据
Input Schema
Name | Required | Description | Default |
---|---|---|---|
codes | Yes | 股票代码列表,用逗号分隔,例如 "000001.SZ,600519.SH" | |
period | No | 周期,例如 "1d", "1m", "5m" 等 | 1d |
Input Schema (JSON Schema)
{
"properties": {
"codes": {
"description": "股票代码列表,用逗号分隔,例如 \"000001.SZ,600519.SH\"",
"type": "string"
},
"period": {
"default": "1d",
"description": "周期,例如 \"1d\", \"1m\", \"5m\" 等",
"type": "string"
}
},
"required": [
"codes"
],
"type": "object"
}