get_instrument_detail
Retrieve detailed information for a specific stock using its code, with options to fetch complete data fields, powered by XTQuantAI’s integration with quantitative trading platforms.
Instructions
获取指定股票的详细信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | 股票代码,例如 000001.SZ | |
iscomplete | No | 是否获取全部字段,默认为False |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "股票代码,例如 000001.SZ",
"type": "string"
},
"iscomplete": {
"default": false,
"description": "是否获取全部字段,默认为False",
"type": "boolean"
}
},
"required": [
"code"
],
"type": "object"
}