get_calendar_data
Retrieve calendar data for financial events like dividends, earnings, IPOs, and stock splits using event types, stock symbols, and pagination parameters.
Instructions
获取分红、收益、IPO、拆股等日历信息。
参数说明: event_type: str 可选值:dividends、dividends_calendar、earnings、earnings_calendar、 ipos_calendar、ipos_disclosure、ipos_prospectus、splits、splits_calendar symbol: str 部分类型需要股票代码 page: int 页码,默认 0 limit: int 返回数量,默认 100
Input Schema
Name | Required | Description | Default |
---|---|---|---|
event_type | Yes | ||
limit | No | ||
page | No | ||
symbol | No |
Input Schema (JSON Schema)
{
"properties": {
"event_type": {
"title": "Event Type",
"type": "string"
},
"limit": {
"default": 100,
"title": "Limit",
"type": "integer"
},
"page": {
"default": 0,
"title": "Page",
"type": "integer"
},
"symbol": {
"default": "",
"title": "Symbol",
"type": "string"
}
},
"required": [
"event_type"
],
"title": "get_calendar_dataArguments",
"type": "object"
}