get_hs300_stocks
Retrieve the current or historical constituent stocks of the CSI 300 Index as a structured markdown table for China’s A-share market analysis.
Instructions
Fetches the constituent stocks of the CSI 300 Index for a given date.
Args:
date: Optional. The date in 'YYYY-MM-DD' format. If None, uses the latest available date.
Returns:
Markdown table with CSI 300 constituent stocks or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Date"
}
},
"title": "get_hs300_stocksArguments",
"type": "object"
}