get_growth_data
Retrieve quarterly year-over-year (YOY) growth rates for A-share stocks by specifying stock code, year, and quarter. Outputs data in a structured markdown table for clear analysis.
Instructions
Fetches quarterly growth capability data (e.g., YOY growth rates) for a stock.
Args:
code: The stock code (e.g., 'sh.600000').
year: The 4-digit year (e.g., '2023').
quarter: The quarter (1, 2, 3, or 4).
Returns:
Markdown table with growth capability data or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | ||
quarter | Yes | ||
year | Yes |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"title": "Code",
"type": "string"
},
"quarter": {
"title": "Quarter",
"type": "integer"
},
"year": {
"title": "Year",
"type": "string"
}
},
"required": [
"code",
"year",
"quarter"
],
"title": "get_growth_dataArguments",
"type": "object"
}