get_stock_industry
Retrieve industry classification for a specific stock or all stocks on a specified date using precise query parameters. Returns data in a structured markdown table for clear analysis.
Instructions
Fetches industry classification for a specific stock or all stocks on a given date.
Args:
code: Optional. The stock code (e.g., 'sh.600000'). If None, fetches for all stocks.
date: Optional. The date in 'YYYY-MM-DD' format. If None, uses the latest available date.
Returns:
Markdown table with industry classification data or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | No | ||
date | No |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Code"
},
"date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Date"
}
},
"title": "get_stock_industryArguments",
"type": "object"
}