skills/tushare-data-1.0.5/references/数据接口/股票数据/打板专题数据/同花顺App热榜数.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

80 lines
2.8 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.

## 同花顺热榜
----
接口ths_hot
描述获取同花顺App热榜数据包括热股、概念板块、ETF、可转债、港美股等等每日盘中提取4次收盘后4次最晚22点提取一次。
限量单次最大2000条可根据日期等参数循环获取全部数据
积分用户积5000积分可调取使用积分获取办法请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=13)
<br><br>
注意:本接口只限个人学习和研究使用,如需商业用途,请自行联系同花顺解决数据采购问题。
<br>
<br>
**输入参数**
名称 | 类型 | 必选 | 描述
---- | ----- | ---- | ----
trade_date | str | N | 交易日期
ts_code | str | N | TS代码
market | str | N | 热榜类型(热股、ETF、可转债、行业板块、概念板块、期货、港股、热基、美股)
is_new | str | N | 是否最新默认Y如果为N则为盘中和盘后阶段采集具体时间可参考rank_time字段状态N每小时更新一次状态Y更新时间为2230
<br>
<br>
**输出参数**
名称 | 类型 | 默认显示 | 描述
--- | ---- | ---- | ----
trade_date | str | Y | 交易日期
data_type | str | Y | 数据类型
ts_code | str | Y | 股票代码
ts_name | str | Y | 股票名称
rank | int | Y | 排行
pct_change | float | Y | 涨跌幅%
current_price | float | Y | 当前价格
concept | str | Y | 标签
rank_reason | str | Y | 上榜解读
hot | float | Y | 热度值
rank_time | str | Y | 排行榜获取时间
<br>
<br>
**接口示例**
```python
#获取查询月份券商金股
df = pro.ths_hot(trade_date='20240315', market='热股', fields='ts_code,ts_name,hot,concept')
```
<br>
<br>
**数据示例**
ts_code ts_name hot concept
0 300750.SZ 宁德时代 214462.0 ["钠离子电池", "同花顺漂亮100"]
1 603580.SH 艾艾精工 185431.0 ["人民币贬值受益", "台湾概念股"]
2 002085.SZ 万丰奥威 180332.0 ["飞行汽车(eVTOL)", "低空经济"]
3 600733.SH 北汽蓝谷 156000.0 ["一体化压铸", "华为汽车"]
4 603259.SH 药明康德 154360.0 ["CRO概念", "创新药"]
.. ... ... ... ...
95 300735.SZ 光弘科技 28528.0 ["智能穿戴", "EDR概念"]
96 002632.SZ 道明光学 28101.0 ["AI手机", "消费电子概念"]
97 601086.SH 国芳集团 28006.0 ["新零售", "网络直播"]
98 002406.SZ 远东传动 28003.0 ["工业互联网", "智能制造"]
99 600160.SH 巨化股份 27979.0 ["PVDF概念", "氟化工概念"]
<br>
<br>
**数据来源**
<img src='https://tushare.pro/files/web/ths1.jpg' width="250" height="500">
<img src='https://tushare.pro/files/web/ths2.png' width="250" height="500">
<img src='https://tushare.pro/files/web/ths3.png' width="250" height="500">