get_realtime_data
Retrieve real-time stock market data for A, B, and H shares using specified sources like eastmoney_direct or xueqiu, with support for custom stock symbols.
Instructions
Get real-time stock market data. 'eastmoney_direct' support all A,B,H shares
Input Schema
Name | Required | Description | Default |
---|---|---|---|
source | No | Data source | eastmoney_direct |
symbol | No | Stock symbol/ticker (e.g. '000001') |
Input Schema (JSON Schema)
{
"properties": {
"source": {
"default": "eastmoney_direct",
"description": "Data source",
"enum": [
"xueqiu",
"eastmoney",
"eastmoney_direct"
],
"title": "Source",
"type": "string"
},
"symbol": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Stock symbol/ticker (e.g. '000001')",
"title": "Symbol"
}
},
"type": "object"
}