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

111 lines
5.8 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.

## 港股现金流量表
----
接口hk_cashflow可以通过[**数据工具**](https://tushare.pro/webclient/)调试和查看数据。
描述:获取港股上市公司现金流量表数据
权限需单独开权限或有15000积分具体权限信息请参考[权限列表](https://tushare.pro/document/1?doc_id=290)
提示当前接口按单只股票获取其历史数据单次请求最大返回10000行数据可循环提取
<br>
<br>
**输入参数**
名称 | 类型 | 必选 | 描述
---- | ----- | ---- | ----
ts_code | str | Y | 股票代码
period | str | N | 报告期(格式YYYYMMDD
ind_name | str | N | 指标名(如:新增贷款)
start_date | str | N | 报告期开始日期格式YYYYMMDD
end_date | str | N | 报告结束始日期格式YYYYMMDD
<br>
<br>
**输出参数**
名称 | 类型 | 默认显示 | 描述
--- | ---- | ---- | ----
ts_code | str | Y | 股票代码
end_date | str | Y | 报告期
name | str | Y | 股票名称
ind_name | str | Y | 财务科目名称
ind_value | float | Y | 财务科目值
<br>
<br>
**接口用法**
```python
pro = ts.pro_api()
#获取腾讯控股00700.HK股票的2024年度资产负债表数据
df = pro.hk_cashflow(ts_code='00700.HK', period='20241231')
#获取腾讯控股00700.HK股票资产负债表历年新增借款数据
df = pro.hk_cashflow(ts_code='00700.HK', ind_name='新增借款')
```
<br>
<br>
**数据样例**
ts_code end_date name ind_name ind_value
0 00700.HK 20241231 腾讯控股 除税前溢利(业务利润) 2.414850e+11
1 00700.HK 20241231 腾讯控股 发行股份 2.093000e+09
2 00700.HK 20241231 腾讯控股 加:利息支出 1.244700e+10
3 00700.HK 20241231 腾讯控股 减:投资收益 7.150000e+08
4 00700.HK 20241231 腾讯控股 减:应占附属公司溢利 2.517600e+10
5 00700.HK 20241231 腾讯控股 加:减值及拨备 9.983000e+09
6 00700.HK 20241231 腾讯控股 减:重估盈余 2.641000e+09
7 00700.HK 20241231 腾讯控股 减:出售资产之溢利 1.300400e+10
8 00700.HK 20241231 腾讯控股 加:折旧及摊销 5.621300e+10
9 00700.HK 20241231 腾讯控股 减:汇兑收益 4.660000e+08
10 00700.HK 20241231 腾讯控股 加:经营调整其他项目 2.070200e+10
11 00700.HK 20241231 腾讯控股 营运资金变动前经营溢利 2.828240e+11
12 00700.HK 20241231 腾讯控股 存货(增加)减少 2.000000e+07
13 00700.HK 20241231 腾讯控股 减:利息收入 1.600400e+10
14 00700.HK 20241231 腾讯控股 应付帐款及应计费用增加(减少) 1.087200e+10
15 00700.HK 20241231 腾讯控股 营运资本变动其他项目 -3.630000e+08
16 00700.HK 20241231 腾讯控股 预付款项、按金及其他应收款项减少(增加) 2.632000e+09
17 00700.HK 20241231 腾讯控股 预收账款、按金及其他应付款增加(减少) -6.765000e+09
18 00700.HK 20241231 腾讯控股 递延收入(增加)减少 1.653300e+10
19 00700.HK 20241231 腾讯控股 经营产生现金 3.047050e+11
20 00700.HK 20241231 腾讯控股 已付税项 4.618400e+10
21 00700.HK 20241231 腾讯控股 经营业务现金净额 2.585210e+11
22 00700.HK 20241231 腾讯控股 已收利息(投资) 1.491300e+10
23 00700.HK 20241231 腾讯控股 已收股息(投资) 3.521000e+09
24 00700.HK 20241231 腾讯控股 存款减少(增加) -5.227700e+10
25 00700.HK 20241231 腾讯控股 处置固定资产 2.030000e+08
26 00700.HK 20241231 腾讯控股 购建无形资产及其他资产 3.312100e+10
27 00700.HK 20241231 腾讯控股 出售附属公司 4.895000e+09
28 00700.HK 20241231 腾讯控股 收购附属公司 9.836000e+09
29 00700.HK 20241231 腾讯控股 收回投资所得现金 9.505200e+10
30 00700.HK 20241231 腾讯控股 投资支付现金 8.246500e+10
31 00700.HK 20241231 腾讯控股 投资业务其他项目 -6.307200e+10
32 00700.HK 20241231 腾讯控股 投资业务现金净额 -1.221870e+11
33 00700.HK 20241231 腾讯控股 融资前现金净额 1.363340e+11
34 00700.HK 20241231 腾讯控股 新增借款 1.145840e+11
35 00700.HK 20241231 腾讯控股 偿还借款 1.146910e+11
36 00700.HK 20241231 腾讯控股 已付利息(融资) 1.241700e+10
37 00700.HK 20241231 腾讯控股 已付股息(融资) 3.124400e+10
38 00700.HK 20241231 腾讯控股 非运算项目 2.414850e+11
39 00700.HK 20241231 腾讯控股 回购股份 1.057510e+11
40 00700.HK 20241231 腾讯控股 赎回债券 1.421300e+10
41 00700.HK 20241231 腾讯控股 偿还融资租赁 6.369000e+09
42 00700.HK 20241231 腾讯控股 购买子公司少数股权而支付的现金 8.381000e+09
43 00700.HK 20241231 腾讯控股 融资业务其他项目 -1.050000e+08
44 00700.HK 20241231 腾讯控股 融资业务现金净额 -1.764940e+11
45 00700.HK 20241231 腾讯控股 现金净额 -4.016000e+10
46 00700.HK 20241231 腾讯控股 期初现金 1.723200e+11
47 00700.HK 20241231 腾讯控股 期间变动其他项目 3.590000e+08
48 00700.HK 20241231 腾讯控股 期末现金 1.325190e+11
49 00700.HK 20241231 腾讯控股 应收帐款减少 -1.048000e+09