agentsclimarketplace

Financial calendar

Skill FTShare-Lab/FTShare-skills/ftshare-market-data/sub-skills/financial-calendar

FTShare Agent Skills for financial data and investment research workflows|金融数据 Skill 与投研业务 Skill 仓库。

Install
npx -y skills add FTShare-Lab/FTShare-skills --skill financial-calendar

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 17 stars17 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

按日期范围查询财经日历(market.ft.tech),含华尔街见闻与百度财经日历数据(宏观数据、IPO、财报时间、交易提醒等)。用户问财经日历、经济事件、IPO 日程、财报时间、交易提醒时使用。

SKILL.md

3.0 KB, as published. Nobody here has run it

查询财经日历

1. 接口描述

项目说明
接口名称查询财经日历
外部接口GET /api/v1/market/data/finance/financial-calendar
请求方式GET
适用场景按日期范围查询华尔街见闻与百度财经日历数据(宏观数据、IPO、财报时间、交易提醒等)

2. 请求参数

参数名类型是否必填描述取值示例备注
start_datestring开始日期2026-05-01格式 YYYY-MM-DD
end_datestring结束日期2026-05-07格式 YYYY-MM-DD

3. 响应说明

响应为信封结构 code / message / datadata 包含两大来源:

3.1 华尔街见闻(wallstreetcn)

字段名类型是否可为空说明
stat_datestring统计日期
tab_typestring标签类型
event_timestring事件时间
regionstring地区
eventstring事件名称
importancestring重要程度
actual_valuestring公布值
forecast_valuestring预测值
previous_valuestring前值

3.2 百度财经日历(baidu)

包含四类数据:

  • economic(经济数据):region、time、title、former_val、market_value、pub_val、indicate_val、star、negative、positive
  • ipo(IPO 数据):code、name、exchange、market、price、volume、amount、pe_ratio 等
  • report_time(财报时间):code、name、exchange、market、report_type、market_time 等
  • trade_reminder(交易提醒):code、name、exchange、market、meeting_type、reason、divi_cash、divi_date 等
{
  "code": 0,
  "message": "success",
  "data": {
    "wallstreetcn": { "items": [] },
    "baidu": {
      "economic": { "items": [] },
      "ipo": { "items": [] },
      "report_time": { "items": [] },
      "trade_reminder": { "items": [] }
    }
  }
}

4. 用法

通过主目录 run.py 调用(必填 --start-date--end-date):

python <RUN_PY> financial-calendar --start-date 2026-05-01 --end-date 2026-05-07

<RUN_PY> 为主 SKILL.md 同级的 run.py 绝对路径。

5. 注意事项

  • 日期格式为 YYYY-MM-DD
  • items 列表可能为空数组,表示该日期范围内无对应事件。
  • 百度侧 IPO、财报时间、交易提醒等条目中,类型字段 JSON 名为 type
  • 多日范围查询可能因响应过大导致服务端截断(服务端 HTTP/2 限制)。建议每次仅查询单日(start_dateend_date 相同),如需多日数据请逐日调用后合并。

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.