get-stock-info
Retrieve real-time stock data including current prices, percentage changes, and trading volume for Chinese A-shares and US stocks using stock codes or names.
Instructions
获取股票实时信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
stock_code | Yes | 股票代码或名称 (例如: 600519 或 贵州茅台) |
Input Schema (JSON Schema)
{
"properties": {
"stock_code": {
"description": "股票代码或名称 (例如: 600519 或 贵州茅台)",
"type": "string"
}
},
"required": [
"stock_code"
],
"type": "object"
}