get_trading_dates
Retrieve a list of trading dates for a specified market using market codes like SH for Shanghai, enabling precise scheduling of quantitative trading activities.
Instructions
获取指定市场的交易日期列表
Input Schema
Name | Required | Description | Default |
---|---|---|---|
market | No | 市场代码,例如 SH 表示上海市场 | SH |
Input Schema (JSON Schema)
{
"properties": {
"market": {
"default": "SH",
"description": "市场代码,例如 SH 表示上海市场",
"type": "string"
}
},
"type": "object"
}