get_all_stock
Retrieve a comprehensive list of A-shares and indices with their trading status for a specific or current date. Returns a markdown table detailing stock codes, names, and trading activity (1 for trading, 0 for suspended).
Instructions
Fetches a list of all stocks (A-shares and indices) and their trading status for a given date.
Args:
date: Optional. The date in 'YYYY-MM-DD' format. If None, uses the current date.
Returns:
Markdown table listing stock codes, names, and their trading status (1=trading, 0=suspended).
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_all_stockArguments",
"type": "object"
}