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

62 lines
1.4 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.

## 游资每日明细
----
接口hm_detail
描述获取每日游资交易明细数据开始于2022年8。游资分类名录请点击<a href="https://tushare.pro/document/2?doc_id=311">游资名录</a>
限量单次最多提取2000条记录可循环调取总量不限制
积分用户积10000积分可调取使用积分获取办法请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=13)
<img src="https://tushare.pro/files/wx/yzpt.png">
注:数据为当日部分数据,此处只未作为示例效果。
<br>
<br>
**输入参数**
名称 | 类型 | 必选 | 描述
---- | ----- | ---- | ----
trade_date | str | N | 交易日期(YYYYMMDD)
ts_code | str | N | 股票代码
hm_name | str | N | 游资名称
start_date | str | N | 开始日期(YYYYMMDD)
end_date | str | N | 结束日期(YYYYMMDD)
<br>
<br>
**输出参数**
名称 | 类型 | 默认显示 | 描述
--- | ---- | ---- | ----
trade_date | str | Y | 交易日期
ts_code | str | Y | 股票代码
ts_name | str | Y | 股票名称
buy_amount | float | Y | 买入金额(元)
sell_amount | float | Y | 卖出金额(元)
net_amount | float | Y | 净买卖(元)
hm_name | str | Y | 游资名称
hm_orgs | str | Y | 关联机构(一般为营业部或机构专用)
tag | str | N | 标签
<br>
<br>
**接口示例**
```python
pro = ts.pro_api()
#获取单日全部明细
df = pro.hm_detail(trade_date='20230815')
```
<br>
<br>