skills/tushare-data-1.0.5/references/数据接口/股票数据/特色数据/股票开盘集合竞价数据.md
wangyitong a65adcc2e5 Initial commit: merged, deduplicated, and vetted skill collection
Sources: extracted from two upstream archives (skill-repo, skills-main),
merged with the following policy:

- 15 broken symlinks (pointing to /Users/jameslee/.cc-switch/skills or
  ../../.agents/skills on a foreign machine) discarded
- 3 real name collisions with identical content (ai-pair, ifind-http-api,
  zhipu-websearch) kept as one copy
- Functional overlaps deduped keeping the strongest variant:
  - docx family: kept docx (official, full toolchain) + docx-cn
    (GB/T 9704 Chinese official-document constants),
    dropped docx_writer (no scripts, name collided with docx)
  - humanizer family: kept humanizer-zh (6 zh reference docs),
    dropped humanizer (en, redundant for CN workflow)
- Skills that only ran in a foreign environment removed:
  ablemind-ops, app-publish, hlb-design-system, openclaw-adj-skill,
  claude-driver
- alphapai excluded from this public repo because its SKILL.md hard-coded
  live credentials

Result: 25 skills, 572 files, ~7.5 MB.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-13 14:47:12 +08:00

66 lines
2.2 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 股票开盘集合竞价数据
----
接口stk_auction_o
描述股票开盘9:30集合竞价数据每天盘后更新
限量单次请求最大返回10000行数据可根据日期循环
权限:开通了股票分钟权限后可获得本接口权限,具体参考[权限说明](https://tushare.pro/document/1?doc_id=290)
<br>
<br>
**输入参数**
名称 | 类型 | 必选 | 描述
---- | ----- | ---- | ----
ts_code | str | N | 股票代码
trade_date | str | N | 交易日期(YYYYMMDD)
start_date | str | N | 开始日期(YYYYMMDD)
end_date | str | N | 结束日期(YYYYMMDD)
<br>
<br>
**输出参数**
名称 | 类型 | 默认显示 | 描述
--- | ---- | ---- | ----
ts_code | str | Y | 股票代码
trade_date | str | Y | 交易日期
close | float | Y | 开盘集合竞价收盘价
open | float | Y | 开盘集合竞价开盘价
high | float | Y | 开盘集合竞价最高价
low | float | Y | 开盘集合竞价最低价
vol | float | Y | 开盘集合竞价成交量
amount | float | Y | 开盘集合竞价成交额
vwap | float | Y | 开盘集合竞价均价
**接口用法**
```python
pro = ts.pro_api()
df=pro.stk_auction_o(trade_date='20241122')
```
<br>
<br>
**数据样例**
ts_code trade_date close open ... low vol amount vwap
0 600502.SH 20241122 5.00 5.00 ... 5.00 45400.0 227000.0 5.000
1 600662.SH 20241122 5.28 5.28 ... 5.28 26800.0 141504.0 5.280
2 601118.SH 20241122 5.63 5.63 ... 5.63 152200.0 856886.0 5.630
3 600938.SH 20241122 26.54 26.54 ... 26.54 340400.0 9034216.0 26.540
4 601900.SH 20241122 15.09 15.09 ... 15.09 287600.0 4339884.0 15.090
... ... ... ... ... ... ... ... ... ...
5719 300504.SZ 20241122 16.80 16.97 ... 16.80 19000.0 320954.0 16.892
5720 300535.SZ 20241122 15.26 15.29 ... 15.26 22800.0 348343.0 15.278
5721 300588.SZ 20241122 15.58 15.60 ... 15.45 117400.0 1830260.0 15.590
5722 300592.SZ 20241122 14.27 14.34 ... 14.23 502600.0 7194406.0 14.314
5723 300657.SZ 20241122 21.73 21.88 ... 21.71 545100.0 11902781.0 21.836