Install
$ agentstack add skill-ftshare-lab-ftshare-skill-eastmoney-all-board-daily-ohlc ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
查询东方财富全板块日线 OHLC
接口说明
| 项目 | 说明 | |------|------| | 接口名称 | 查询东方财富全板块日线 OHLC | | 外部接口 | GET /api/v1/market/data/eastmoney-all-board-daily-ohlc | | 请求方式 | GET | | 适用场景 | 获取东方财富全部板块的历史日线 OHLC,结果按板块代码、日期排序并分页返回 |
请求参数
| 参数名 | 类型 | 是否必填 | 描述 | 取值示例 | 备注 | |--------|------|----------|------|----------|------| | startdate | string | 否 | 起始日期(含) | 20251127 | YYYY-MM-DD 或 YYYYMMDD | | enddate | string | 否 | 截止日期(含) | 2025-11-28 | YYYY-MM-DD 或 YYYYMMDD | | page | uint | 否 | 页码 | 1 | 从 1 开始,默认 1;传 0 时按 1 处理 | | page_size | uint | 否 | 每页数量 | 50 | 默认 50;传 0 时按 1 处理,最大 200 |
> start_date 与 end_date 同时给出时,结束日期与开始日期相差不得超过 3 个自然日。
执行方式
# 取一页
python eastmoney-all-board-daily-ohlc --start_date 20251127 --end_date 2025-11-28 --page 1 --page_size 1
# 翻全量
python eastmoney-all-board-daily-ohlc --all
` 为主 SKILL.md 同级的 run.py` 绝对路径。
响应结构
外层 code/message/data,分页数据位于 data.records。
{
"code": 200,
"message": "success",
"data": {
"pageNum": 1, "pageSize": 1, "total": 3, "pages": 3,
"records": [
{
"板块代码": "BK1024",
"板块名称": "绿色电力",
"市场": "90",
"日期": "2025-11-27",
"开盘": "1001.53",
"收盘": "1037.67",
"最高": "1041.82",
"最低": "1001.53",
"成交量": "52669555",
"成交额": "43012845568.00",
"振幅": "4.03",
"涨跌幅": "3.77",
"涨跌额": "37.67",
"换手率": "1.03"
}
]
}
}
data 字段
| 字段 | 类型 | 说明 | |------|------|------| | pageNum | int | 当前页码 | | pageSize | int | 每页数量 | | total | int | 命中总记录数 | | pages | int | 总页数 | | records | array | 当前页行情记录 |
records 元素字段(中文键)
| 字段 | 类型 | 说明 | |------|------|------| | 板块代码 | string | 板块代码 | | 板块名称 | string | 板块名称 | | 市场 | string | 东方财富市场代码 | | 日期 | string | 日期,YYYY-MM-DD | | 开盘 / 收盘 / 最高 / 最低 | string | 开 / 收 / 高 / 低 | | 成交量 / 成交额 | string | 成交量 / 成交额 | | 振幅 / 涨跌幅 / 涨跌额 / 换手率 | string | 振幅(%) / 涨跌幅(%) / 涨跌额 / 换手率(%) |
注意事项
- 数据范围 2013-04-09 至今,不同板块的起始日期可能不同。
start_date、end_date均可选;仅在二者同时传入时校验 3 个自然日的跨度。page、page_size必须是非负整数;值为 0 时按 1 处理,page_size大于 200 时按 200 处理。- 行情记录的字段名及数值均按字符串返回;字段名为中文。
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: FTShare-Lab
- Source: FTShare-Lab/FTShare-skill
- License: MIT
- Homepage: https://market.ft.tech/gateway/doc/p/t5alo2h9
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.