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

67 lines
2.0 KiB
Markdown
Raw 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_c
描述股票收盘15:00集合竞价数据每天盘后更新
限量单次请求最大返回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 | 收盘集合竞价均价
<br>
<br>
**接口用法**
```python
pro = ts.pro_api()
df=pro.stk_auction_c(trade_date='20241122')
```
<br>
<br>
**数据样例**
ts_code trade_date close ... vol amount vwap
0 603102.SH 20241122 36.16 ... 557900.0 20347168.0 36.471
1 600696.SH 20241122 13.91 ... 3600489.0 50550184.0 14.040
2 600769.SH 20241122 12.75 ... 7940892.0 102510940.0 12.909
3 601900.SH 20241122 14.91 ... 6348300.0 95537632.0 15.049
4 600502.SH 20241122 4.88 ... 9718900.0 47690748.0 4.907
... ... ... ... ... ... ... ...
5719 300504.SZ 20241122 16.34 ... 2037000.0 33653784.0 16.521
5720 300535.SZ 20241122 14.45 ... 638735.0 9340342.0 14.623
5721 300588.SZ 20241122 15.39 ... 3232050.0 50313180.0 15.567
5722 300592.SZ 20241122 14.43 ... 9910880.0 143872140.0 14.517
5723 300657.SZ 20241122 21.13 ... 10916225.0 235013090.0 21.529