get_sz50_stocks
Fetch the constituent stocks of the SZSE 50 Index for a specific date. The tool returns a markdown table listing the stocks or provides an error message if data is unavailable.
Instructions
Fetches the constituent stocks of the SZSE 50 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 SZSE 50 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_sz50_stocksArguments",
"type": "object"
}