get_stock_list
Retrieve a list of stocks within a specified sector using the MCP server XTQuantAI. Ideal for accessing trading data directly through AI integration.
Instructions
获取指定板块的股票列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sector | No | 板块名称,例如 沪深A股 | 沪深A股 |
Input Schema (JSON Schema)
{
"properties": {
"sector": {
"default": "沪深A股",
"description": "板块名称,例如 沪深A股",
"type": "string"
}
},
"type": "object"
}