get_trade_dates
Retrieve trading date information for A-share markets within a specified date range. Returns a clear markdown table indicating trading days (1) or non-trading days (0).
Instructions
Fetches trading dates information within a specified range.
Args:
start_date: Optional. Start date in 'YYYY-MM-DD' format. Defaults to 2015-01-01 if None.
end_date: Optional. End date in 'YYYY-MM-DD' format. Defaults to the current date if None.
Returns:
Markdown table indicating whether each date in the range was a trading day (1) or not (0).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
start_date | No |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "End Date"
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Start Date"
}
},
"title": "get_trade_datesArguments",
"type": "object"
}