Install
openclaw skills install a-share-trading查询A股实时行情、历史数据、技术指标、事件、资金面与个股行业信息。Use when 用户提到股票代码、板块、技术分析、财务指标、指数成分、交易日历、宏观数据或个股所属行业。
openclaw skills install a-share-trading使用本技能时,优先调用本目录下脚本获取结构化数据,不依赖网页抓取。
支持能力:
fetch_sector_info.py,数据源东方财富;不作为支持能力:概念板块,见下)pip install akshare MyTT pandas numpy requests
SKILL_DIR="<本skill绝对路径>"
python3 "$SKILL_DIR/scripts/fetch_realtime.py" [参数]
python3 "$SKILL_DIR/scripts/fetch_history.py" [参数]
python3 "$SKILL_DIR/scripts/fetch_technical.py" [参数]
python3 "$SKILL_DIR/scripts/fetch_stock_events.py" [参数]
python3 "$SKILL_DIR/scripts/fetch_ah_stocks.py" [参数]
python3 "$SKILL_DIR/scripts/fetch_ah_ipo_timeline.py" [参数]
python3 "$SKILL_DIR/scripts/fetch_sector_info.py" [参数]
说明:脚本虽可能带概念相关参数,但上游概念接口结果不稳定、常为空,本技能不将概念查询列为可用能力;使用时请固定加 --no-concepts,只查行业与证券简称。
优先使用以下股票代码格式:
600519sh600519 / sz000001600519.XSHG按问题类型选脚本:
fetch_realtime.py:实时价格、分钟线、指数、北向、龙虎榜、涨跌停、板块、资金流、新闻、全市场行情、成交明细fetch_history.py:历史K线、财务、业绩、分红、行业、指数成分、交易日历、宏观fetch_technical.py:MA/MACD/KDJ/RSI/BOLL等技术指标fetch_stock_events.py:业绩、增减持/回购、监管、重大合同、舆情方向fetch_ah_stocks.py:A+H 双重上市公司清单、H 股上市日期区间筛选fetch_ah_ipo_timeline.py:A股赴港上市关键事件节点(递表/聆讯/备案/招股/定价/配售/上市);支持 --code / --name 点查fetch_sector_info.py:单只或多只股票的行业与名称(东方财富);批量时并行,默认 --workers;仅文档化行业路径,不加概念--json。fetch_history.py(已内置多源逻辑,K线链路为腾讯优先、新浪降级、东财兜底)。--all-stocks 已支持新浪/腾讯/雪球多源;若单一源失败,继续返回其他源合并结果。当任务是“批量拉取”时(实时个股列表 / 多只历史K线),默认并行,不逐只串行。
max_workers=8~12(默认 10)超时上限(硬限制):
30s30s60s超时/失败处理(强制):
# 实时
python3 fetch_realtime.py --quote 600519 --json
python3 fetch_realtime.py --index --json
python3 fetch_realtime.py --boards-summary --boards-limit 20 --json
python3 fetch_realtime.py --all-quote --sort change_pct_desc --top 50 --json
python3 fetch_realtime.py --tick 600519 --json
# 历史
python3 fetch_history.py --kline 600519 --start 2025-01-01 --end 2025-03-31 --freq d --json
python3 fetch_history.py --kline-batch 600519,000001,300750 --start 2025-10-01 --end 2026-03-31 --count 120 --workers 8 --retries 2 --json
python3 fetch_history.py --financials 600519 --start 2023-01-01 --end 2025-01-01 --json
python3 fetch_history.py --industry 300271 --with-boards --json
# 技术
python3 fetch_technical.py 600519 --freq 1d --count 120 --indicators MA,MACD,KDJ,RSI,BOLL --json
# 事件
python3 fetch_stock_events.py --code 300476 --name 胜宏科技 --dates 20250331,20241231 --limit 20 --json
# A+H 列表
python3 fetch_ah_stocks.py --json
python3 fetch_ah_stocks.py --since 2020-01-01 --until 2024-12-31 --json
# A股赴港上市关键节点
python3 fetch_ah_ipo_timeline.py --name 顺丰 --json
python3 fetch_ah_ipo_timeline.py --code 002352 --json
python3 fetch_ah_ipo_timeline.py --since 2020 --workers 4 --json
# 个股行业(不加概念,见上文说明)
python3 fetch_sector_info.py --no-concepts --json 600519
python3 fetch_sector_info.py --workers 8 --no-concepts --timeout 15 --json 600519 000001 300750 600036 601318 002594 688981 300059
fetch_sector_info.py 的概念板块字段;技能侧只用 --no-concepts 的行业与名称结果。references/api-reference.md