tushare 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +21 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +59 -0
- data/LICENSE.txt +28 -0
- data/README.md +41 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/tushare.rb +18 -0
- data/lib/tushare/datayes.rb +50 -0
- data/lib/tushare/datayes/bond.rb +69 -0
- data/lib/tushare/datayes/constants.rb +598 -0
- data/lib/tushare/datayes/equity.rb +111 -0
- data/lib/tushare/datayes/fund.rb +115 -0
- data/lib/tushare/datayes/fundamental.rb +260 -0
- data/lib/tushare/datayes/future.rb +22 -0
- data/lib/tushare/datayes/hk_equity.rb +18 -0
- data/lib/tushare/datayes/idx.rb +19 -0
- data/lib/tushare/datayes/iv.rb +60 -0
- data/lib/tushare/datayes/macro.rb +3517 -0
- data/lib/tushare/datayes/market.rb +286 -0
- data/lib/tushare/datayes/master.rb +67 -0
- data/lib/tushare/datayes/options.rb +22 -0
- data/lib/tushare/datayes/subject.rb +349 -0
- data/lib/tushare/internet/box_office.rb +155 -0
- data/lib/tushare/stock/billboard.rb +197 -0
- data/lib/tushare/stock/classifying.rb +288 -0
- data/lib/tushare/stock/fundamental.rb +232 -0
- data/lib/tushare/stock/macro.rb +253 -0
- data/lib/tushare/stock/news_event.rb +165 -0
- data/lib/tushare/stock/reference.rb +473 -0
- data/lib/tushare/stock/shibor.rb +136 -0
- data/lib/tushare/stock/trading.rb +513 -0
- data/lib/tushare/util.rb +293 -0
- data/lib/tushare/version.rb +3 -0
- data/tushare.gemspec +32 -0
- metadata +211 -0
@@ -0,0 +1,111 @@
|
|
1
|
+
module Tushare
|
2
|
+
module Datayes
|
3
|
+
# 通联数据-沪深股票信息
|
4
|
+
module Equity
|
5
|
+
# 获取股票的基本信息,包含股票交易代码及其简称、股票类型、上市状态、上市板块、上市日期等;
|
6
|
+
# 上市状态为最新数据,不显示历史变动信息。
|
7
|
+
def equ(equ_type_cd: '', sec_id: '', ticker: '', list_status_cd: '',
|
8
|
+
field: '')
|
9
|
+
api_path = format(EQU, equ_type_cd, sec_id, ticker, list_status_cd,
|
10
|
+
field)
|
11
|
+
fetch_data api_path
|
12
|
+
end
|
13
|
+
|
14
|
+
# 获取股票历次配股的基本信息,
|
15
|
+
# 包含每次配股方案的内容、方案进度、历史配股预案公布次数以及最终是否配股成功。
|
16
|
+
def equ_allot(is_allotment: '', sec_id: '', ticker: '',
|
17
|
+
begin_date: '', end_date: '', field: '')
|
18
|
+
api_path = format(EQUALLOT, is_allotment, sec_id, ticker, begin_date,
|
19
|
+
end_date, field)
|
20
|
+
fetch_data api_path
|
21
|
+
end
|
22
|
+
|
23
|
+
# 获取股票历次分红(派现、送股、转增股)的基本信息,
|
24
|
+
# 包含历次分红预案的内容、实施进展情况以及历史宣告分红次数。
|
25
|
+
def equ_div(event_process_cd: '', ex_div_date: '', sec_id: '', ticker: '',
|
26
|
+
begin_date: '', end_date: '', field: '')
|
27
|
+
api_path = format(EQUDIV, event_process_cd, ex_div_date, sec_id, ticker,
|
28
|
+
begin_date, end_date, field)
|
29
|
+
fetch_data api_path
|
30
|
+
end
|
31
|
+
|
32
|
+
# 输入证券ID或股票交易代码,获取股票所属行业分类
|
33
|
+
def equ_industry(industry: '', industry_id: '', industry_version_cd: '',
|
34
|
+
sec_id: '', ticker: '', into_date: '', field: '')
|
35
|
+
api_path = format(EQUINDUSTRY, industry, industry_id,
|
36
|
+
industry_version_cd, sec_id, ticker, into_date,
|
37
|
+
field)
|
38
|
+
fetch_data api_path
|
39
|
+
end
|
40
|
+
|
41
|
+
# 获取股票首次公开发行上市的基本信息,包含股票首次公开发行的进程及发行结果。
|
42
|
+
def equ_ipo(event_process_cd: '', sec_id: '', ticker: '', field: '')
|
43
|
+
api_path = format(EQUIPO, event_process_cd, sec_id, ticker, field)
|
44
|
+
fetch_data api_path
|
45
|
+
end
|
46
|
+
|
47
|
+
# 获取股票股权分置改革的基本信息,包含股改进程、股改实施方案以及流通股的变动情况。
|
48
|
+
def equ_ref(sec_id: '', ticker: '', begin_date: '', end_date: '',
|
49
|
+
event_process_cd: '', field: '')
|
50
|
+
api_path = format(EQUREF, sec_id, ticker, begin_date, end_date,
|
51
|
+
event_process_cd, field)
|
52
|
+
fetch_data api_path
|
53
|
+
end
|
54
|
+
|
55
|
+
# 获取股票每日回报率的基本信息,包含交易当天的上市状态、日行情以及除权除息事项的基本数据。
|
56
|
+
def equ_retud(list_status_cd: '', sec_id: '', ticker: '',
|
57
|
+
begin_date: '', daily_return_no_reinv_lower: '',
|
58
|
+
daily_return_no_reinv_upper: '',
|
59
|
+
daily_return_reinv_lower: '',
|
60
|
+
daily_return_reinv_upper: '', end_date: '',
|
61
|
+
is_chg_pctl: '', field: '')
|
62
|
+
api_path = format(EQURETUD, list_status_cd, sec_id, ticker, begin_date,
|
63
|
+
daily_return_no_reinv_lower,
|
64
|
+
daily_return_no_reinv_upper, daily_return_reinv_lower,
|
65
|
+
daily_return_reinv_upper, end_date, is_chg_pctl,
|
66
|
+
field)
|
67
|
+
fetch_data api_path
|
68
|
+
end
|
69
|
+
|
70
|
+
# 获取股票进行股本拆细或者缩股的基本信息。
|
71
|
+
def equ_splits(sec_id: '', ticker: '', begin_date: '', end_date: '',
|
72
|
+
field: '')
|
73
|
+
api_path = format(EQUSPLITS, sec_id, ticker, begin_date, end_date, field)
|
74
|
+
fetch_data api_path
|
75
|
+
end
|
76
|
+
|
77
|
+
# 获取上海、深圳交易所公布的每个交易日的融资融券交易汇总的信息,
|
78
|
+
# 包括成交量、成交金额。本交易日可获取前一交易日的数据。
|
79
|
+
def fst_total(begin_date: '', end_date: '', exchange_cd: '',
|
80
|
+
field: '')
|
81
|
+
api_path = format(FSTTOTAL, begin_date, end_date, exchange_cd, field)
|
82
|
+
fetch_data api_path
|
83
|
+
end
|
84
|
+
|
85
|
+
# 获取上海、深圳交易所公布的每个交易日的融资融券交易具体的信息,
|
86
|
+
# 包括标的证券信息、融资融券金额以及数量方面的数据。本交易日可获取前一交易日的数据。
|
87
|
+
def fst_detail(sec_id: '', ticker: '', begin_date: '', end_date: '',
|
88
|
+
field: '')
|
89
|
+
api_path = format(FSTDETAIL, sec_id, ticker, begin_date, end_date,
|
90
|
+
field)
|
91
|
+
fetch_data api_path
|
92
|
+
end
|
93
|
+
|
94
|
+
# 获取上市公司股本结构及历次股本变动数据。
|
95
|
+
def equ_share(sec_id: '', ticker: '', begin_date: '', end_date: '',
|
96
|
+
party_id: '', field: '')
|
97
|
+
api_path = format(EQUSHARE, sec_id, ticker, begin_date, end_date,
|
98
|
+
party_id, field)
|
99
|
+
fetch_data api_path
|
100
|
+
end
|
101
|
+
|
102
|
+
# 通过输入股票ID(通联编制)或股票交易代码(支持多值输入,最大支持50只),
|
103
|
+
# 选择查询开始日期与结束日期,获取股票在一段时间ST标记信息。
|
104
|
+
def sec_st(sec_id: '', ticker: '', begin_date: '', end_date: '',
|
105
|
+
field: '')
|
106
|
+
api_path = format(SECST, sec_id, ticker, begin_date, end_date, field)
|
107
|
+
fetch_data api_path
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
@@ -0,0 +1,115 @@
|
|
1
|
+
module Tushare
|
2
|
+
module Datayes
|
3
|
+
# 通联数据-基金信息
|
4
|
+
module Fund
|
5
|
+
# 获取基金的基本档案信息,
|
6
|
+
# 包含基金名称、交易代码、分级情况、所属类别、保本情况、上市信息、相关机构、投资描述等信息。
|
7
|
+
# 收录了2005年以来的历史数据,数据更新频率为不定期。
|
8
|
+
def fund(etf_lof: '', list_status_cd: '', sec_id: '', ticker: '',
|
9
|
+
category: '', operation_mode: '', field: '')
|
10
|
+
api_path = format(FUND, etf_lof, list_status_cd, sec_id, ticker,
|
11
|
+
category, operation_mode, field)
|
12
|
+
fetch_data api_path
|
13
|
+
end
|
14
|
+
|
15
|
+
# 获取某只基金的历史净值数据(货币型、短期理财债券型除外),
|
16
|
+
# 包括了单位份额净值、累计净值与复权净值。
|
17
|
+
# 收录了2005年以来的历史数据,数据更新频率为日。不输入日期则默认获取近一年以来的历史数据。
|
18
|
+
def fund_nav(data_date: '', sec_id: '', ticker: '', begin_date: '',
|
19
|
+
end_date: '', field: '')
|
20
|
+
api_path = format(FUNDNAV, data_date, sec_id, ticker, begin_date,
|
21
|
+
end_date, field)
|
22
|
+
fetch_data api_path
|
23
|
+
end
|
24
|
+
|
25
|
+
# 获取某只货币型基金或短期理财债券型基金的历史收益情况,
|
26
|
+
# 包含了每万份收益,七日年化收益率等信息。
|
27
|
+
# 收录了2005年以来的历史数据,数据更新频率为日。不输入日期则默认获取近一年以来的历史数据。
|
28
|
+
def fund_divm(data_date: '', sec_id: '', ticker: '', begin_date: '',
|
29
|
+
end_date: '', field: '')
|
30
|
+
api_path = format(FUNDDIVM, data_date, sec_id, ticker, begin_date,
|
31
|
+
end_date, field)
|
32
|
+
fetch_data api_path
|
33
|
+
end
|
34
|
+
|
35
|
+
# 获取基金的净值调整信息,包括基金分红和基金拆分两种调整情况。
|
36
|
+
# 分红包含每份分红,除息日,分红在投资日;拆分包含份额折算比例,拆分日。
|
37
|
+
# 收录了2005年以来的历史数据,数据更新频率为不定期。
|
38
|
+
def fund_div(sec_id: '', ticker: '', adjusted_type: '',
|
39
|
+
begin_date: '', end_date: '', field: '')
|
40
|
+
api_path = format(FUNDDIV, sec_id, ticker, adjusted_type, begin_date,
|
41
|
+
end_date, field)
|
42
|
+
fetch_data api_path
|
43
|
+
end
|
44
|
+
|
45
|
+
# 获取基金定期披露的资产配置情况,包含了资产总值、资产净值,以及资产总值中权益类、固定收益类、现金及其他四种资产的市值与占比情况。
|
46
|
+
# 收录了2005年以来的历史数据,数据更新频率为季度。获取方式支持:
|
47
|
+
# 1)输入一个或多个secID/ticker,并输入beginDate和endDate,可以查询到指定基金,一段时间的资产配置;
|
48
|
+
# 2)输入reportDate,不输入其他参数,可以查询到输入日期的全部基金资产配置
|
49
|
+
def fund_assets(report_date: '', sec_id: '', ticker: '',
|
50
|
+
begin_date: '', end_date: '', field: '')
|
51
|
+
api_path = format(FUNDASSETS, report_date, sec_id, ticker, begin_date,
|
52
|
+
end_date, field)
|
53
|
+
fetch_data api_path
|
54
|
+
end
|
55
|
+
|
56
|
+
# 获取基金定期披露的持仓明细,包含所持有的股票、债券、基金的持仓明细数据。收录了2005年以来的历史数据,数据更新频率为季度。获取方式支持:
|
57
|
+
# 1)输入一个或多个secID/ticker,并输入beginDate和endDate,可以查询到指定基金,一段时间的基金持仓;
|
58
|
+
# 2)输入reportDate,不输入其他参数,可以查询到输入日期的全部基金持仓数据。
|
59
|
+
def fund_holdings(report_date: '', sec_id: '', ticker: '',
|
60
|
+
begin_date: '', end_date: '', sec_type: '',
|
61
|
+
field: '')
|
62
|
+
api_path = format(FUNDHOLDINGS, report_date, sec_id, ticker, begin_date,
|
63
|
+
end_date, sec_type, field)
|
64
|
+
fetch_data api_path
|
65
|
+
end
|
66
|
+
|
67
|
+
# 获取ETF基金交易日的申赎清单基本信息,
|
68
|
+
# 包含标的指数名称,上一交易日的现金差额、最小申赎单位净值、单位净值,交易日当日的预估现金差额、最小申赎单位、现金替代比例上限、是否允许申购赎回、是否公布IOPV等信息。
|
69
|
+
# 收录了2005年以来的历史数据,数据更新频率为日。不输入日期则默认获取近两天的数据。
|
70
|
+
def fund_etf_pr_list(sec_id: '', ticker: '', begin_date: '',
|
71
|
+
end_date: '', field: '')
|
72
|
+
api_path = format(FUNDETFPRLIST, sec_id, ticker, begin_date, end_date,
|
73
|
+
field)
|
74
|
+
fetch_data api_path
|
75
|
+
end
|
76
|
+
|
77
|
+
# 获取ETF基金每个交易日的跟踪的标的指数成分券清单,
|
78
|
+
# 包含成分券的代码、简称、股票数量、现金替代溢价比、固定替代金额等信息。
|
79
|
+
# 收录了2005年以来的历史数据,数据更新频率为日。不输入日期则默认获取近两天的数据。
|
80
|
+
def fund_etf_cons(sec_id: '', ticker: '', begin_date: '',
|
81
|
+
end_date: '', field: '')
|
82
|
+
api_path = format(FUNDETFCONS, sec_id, ticker, begin_date, end_date,
|
83
|
+
field)
|
84
|
+
fetch_data api_path
|
85
|
+
end
|
86
|
+
|
87
|
+
# 获取上海证券基金评级信息。
|
88
|
+
# 收录了10年以来的历史数据,数据更新频率为月。不输入日期则默认获取近一年以来的历史数据。
|
89
|
+
def fund_rating(sec_id: '', ticker: '', begin_date: '', end_date: '',
|
90
|
+
field: '')
|
91
|
+
api_path = format(FUNDRATING, sec_id, ticker, begin_date, end_date,
|
92
|
+
field)
|
93
|
+
fetch_data api_path
|
94
|
+
end
|
95
|
+
|
96
|
+
# 获取场内基金的份额变动信息,
|
97
|
+
# 包含基金名称、交易代码、交易市场、截止日期、流通份额等信息。
|
98
|
+
# 收录了2005年以来的历史数据,数据更新频率为日。
|
99
|
+
def fund_shares_chg(sec_id: '', ticker: '', begin_date: '',
|
100
|
+
end_date: '', field: '')
|
101
|
+
api_path = format(FUNDSHARESCHG, sec_id, ticker, begin_date, end_date,
|
102
|
+
field)
|
103
|
+
fetch_data api_path
|
104
|
+
end
|
105
|
+
|
106
|
+
# 获取分级基金的基本信息,包含母、子基金名称、交易代码、分拆比例、折算等信息。
|
107
|
+
def fund_leverage_info(exchange_cd_leverage: '', sec_id: '', ticker: '',
|
108
|
+
field: '')
|
109
|
+
api_path = format(FUNDLEVERAGEINFO, exchange_cd_leverage, sec_id,
|
110
|
+
ticker, field)
|
111
|
+
fetch_data api_path
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
@@ -0,0 +1,260 @@
|
|
1
|
+
module Tushare
|
2
|
+
module Datayes
|
3
|
+
# 通联数据-基本面数据
|
4
|
+
module Fundamental
|
5
|
+
# 1、根据2007年新会计准则制定的合并资产负债表模板,
|
6
|
+
# 收集了2007年以来沪深上市公司定期报告中各个会计期间的资产负债表数据;
|
7
|
+
# 2、仅收集合并报表数据,包括期末和期初数据;
|
8
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
9
|
+
# 4、本表中单位为人民币元;
|
10
|
+
# 5、每季更新。
|
11
|
+
def fdmt_bs(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
12
|
+
end_date: '', publish_date_begin: '', publish_date_end: '',
|
13
|
+
field: '')
|
14
|
+
api_path = format(FDMTBS, report_type, sec_id, ticker, begin_date,
|
15
|
+
end_date, publish_date_begin, publish_date_end, field)
|
16
|
+
fetch_data api_path
|
17
|
+
end
|
18
|
+
|
19
|
+
# 1、根据2007年新会计准则制定的银行业资产负债表模板,
|
20
|
+
# 收集了2007年以来沪深上市公司定期报告中所有以此模板披露的资产负债表数据;
|
21
|
+
# (主要是银行业上市公司)
|
22
|
+
# 2、仅收集合并报表数据,包括期末和期初数据;
|
23
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
24
|
+
# 4、本表中单位为人民币元;
|
25
|
+
# 5、每季更新。
|
26
|
+
def fdmt_bs_bank(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
27
|
+
end_date: '', publish_date_begin: '',
|
28
|
+
publish_date_end: '', field: '')
|
29
|
+
api_path = format(FDMTBSBANK, report_type, sec_id, ticker, begin_date,
|
30
|
+
end_date, publish_date_begin, publish_date_end, field)
|
31
|
+
fetch_data api_path
|
32
|
+
end
|
33
|
+
|
34
|
+
# 1、根据2007年新会计准则制定的证券业资产负债表模板,
|
35
|
+
# 收集了2007年以来沪深上市公司定期报告中所有以此模板披露的资产负债表数据;
|
36
|
+
# (主要是证券业上市公司)
|
37
|
+
# 2、仅收集合并报表数据,包括期末和期初数据;
|
38
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
39
|
+
# 4、本表中单位为人民币元;
|
40
|
+
# 5、每季更新。
|
41
|
+
def fdmt_bs_secu(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
42
|
+
end_date: '', publish_date_begin: '',
|
43
|
+
publish_date_end: '', field: '')
|
44
|
+
api_path = format(FDMTBSSECU, report_type, sec_id, ticker, begin_date,
|
45
|
+
end_date, publish_date_begin, publish_date_end, field)
|
46
|
+
fetch_data api_path
|
47
|
+
end
|
48
|
+
|
49
|
+
# 1、根据2007年新会计准则制定的一般工商业资产负债表模板,
|
50
|
+
# 收集了2007年以来沪深上市公司定期报告中所有以此模板披露的资产负债表数据;
|
51
|
+
# (主要是一般工商业上市公司)
|
52
|
+
# 2、仅收集合并报表数据,包括期末和期初数据;
|
53
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
54
|
+
# 4、本表中单位为人民币元;
|
55
|
+
# 5、每季更新。
|
56
|
+
def fdmt_bs_indu(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
57
|
+
end_date: '', publish_date_begin: '',
|
58
|
+
publish_date_end: '', field: '')
|
59
|
+
api_path = format(FDMTBSINDU, report_type, sec_id, ticker, begin_date,
|
60
|
+
end_date, publish_date_begin, publish_date_end, field)
|
61
|
+
fetch_data api_path
|
62
|
+
end
|
63
|
+
|
64
|
+
# 1、根据2007年新会计准则制定的保险业资产负债表模板,
|
65
|
+
# 收集了2007年以来沪深上市公司定期报告中所有以此模板披露的资产负债表数据;
|
66
|
+
# (主要是保险业上市公司)
|
67
|
+
# 2、仅收集合并报表数据,包括期末和期初数据;
|
68
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
69
|
+
# 4、本表中单位为人民币元。
|
70
|
+
# 5、每季更新。
|
71
|
+
def fdmt_bs_insu(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
72
|
+
end_date: '', publish_date_begin: '',
|
73
|
+
publish_date_end: '', field: '')
|
74
|
+
api_path = format(FDMTBSINSU, report_type, sec_id, ticker, begin_date,
|
75
|
+
end_date, publish_date_begin, publish_date_end, field)
|
76
|
+
fetch_data api_path
|
77
|
+
end
|
78
|
+
|
79
|
+
# 1、根据2007年新会计准则制定的合并现金流量表模板,
|
80
|
+
# 收集了2007年以来沪深上市公司定期报告中各个会计期间的现金流量表数据;
|
81
|
+
# 2、仅收集合并报表数据,包括本期和上期数据;
|
82
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
83
|
+
# 4、本表中单位为人民币元;
|
84
|
+
# 5、每季更新。
|
85
|
+
def fdmt_cf(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
86
|
+
end_date: '', publish_date_begin: '', publish_date_end: '',
|
87
|
+
field: '')
|
88
|
+
api_path = format(FDMTCF, report_type, sec_id, ticker, begin_date,
|
89
|
+
end_date, publish_date_begin, publish_date_end, field)
|
90
|
+
fetch_data api_path
|
91
|
+
end
|
92
|
+
|
93
|
+
# 1、根据2007年新会计准则制定的银行业现金流量表模板,
|
94
|
+
# 收集了2007年以来沪深上市公司定期报告中所有以此模板披露的现金流量表数据;
|
95
|
+
# (主要是银行业上市公司)
|
96
|
+
# 2、仅收集合并报表数据,包括本期和上期数据;
|
97
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
98
|
+
# 4、本表中单位为人民币元;
|
99
|
+
# 5、每季更新。
|
100
|
+
def fdmt_cf_bank(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
101
|
+
end_date: '', publish_date_begin: '',
|
102
|
+
publish_date_end: '', field: '')
|
103
|
+
api_path = format(FDMTCFBANK, report_type, sec_id, ticker, begin_date,
|
104
|
+
end_date, publish_date_begin, publish_date_end, field)
|
105
|
+
fetch_data api_path
|
106
|
+
end
|
107
|
+
|
108
|
+
# 1、根据2007年新会计准则制定的证券业现金流量表模板,
|
109
|
+
# 收集了2007年以来沪深上市公司定期报告中所有以此模板披露的现金流量表数据;
|
110
|
+
# (主要是证券业上市公司)
|
111
|
+
# 2、仅收集合并报表数据,包括本期和上期数据;
|
112
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
113
|
+
# 4、本表中单位为人民币元;
|
114
|
+
# 5、每季更新。
|
115
|
+
def fdmt_cf_secu(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
116
|
+
end_date: '', publish_date_begin: '',
|
117
|
+
publish_date_end: '', field: '')
|
118
|
+
api_path = format(FDMTCFSECU, report_type, sec_id, ticker, begin_date,
|
119
|
+
end_date, publish_date_begin, publish_date_end, field)
|
120
|
+
fetch_data api_path
|
121
|
+
end
|
122
|
+
|
123
|
+
# 1、根据2007年新会计准则制定的一般工商业现金流量表模板,
|
124
|
+
# 收集了2007年以来沪深上市公司定期报告中所有以此模板披露的现金流量表数据;
|
125
|
+
# (主要是一般工商业上市公司)
|
126
|
+
# 2、仅收集合并报表数据,包括本期和上期数据;
|
127
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
128
|
+
# 4、本表中单位为人民币元;
|
129
|
+
# 5、每季更新。
|
130
|
+
def fdmt_cf_indu(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
131
|
+
end_date: '', publish_date_begin: '',
|
132
|
+
publish_date_end: '', field: '')
|
133
|
+
api_path = format(FDMTCFINDU, report_type, sec_id, ticker, begin_date,
|
134
|
+
end_date, publish_date_begin, publish_date_end, field)
|
135
|
+
fetch_data api_path
|
136
|
+
end
|
137
|
+
|
138
|
+
# 1、根据2007年新会计准则制定的保险业现金流量表模板,
|
139
|
+
# 收集了2007年以来沪深上市公司定期报告中所有以此模板披露的现金流量表数据;
|
140
|
+
# (主要是保险业上市公司)
|
141
|
+
# 2、仅收集合并报表数据,包括本期和上期数据;
|
142
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
143
|
+
# 4、本表中单位为人民币元;
|
144
|
+
# 5、每季更新。
|
145
|
+
def fdmt_cf_insu(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
146
|
+
end_date: '', publish_date_begin: '',
|
147
|
+
publish_date_end: '', field: '')
|
148
|
+
api_path = format(FDMTCFINSU, report_type, sec_id, ticker, begin_date,
|
149
|
+
end_date, publish_date_begin, publish_date_end, field)
|
150
|
+
fetch_data api_path
|
151
|
+
end
|
152
|
+
|
153
|
+
# 1、根据2007年新会计准则制定的合并利润表模板,
|
154
|
+
# 收集了2007年以来沪深上市公司定期报告中各个会计期间的利润表数据;
|
155
|
+
# 2、仅收集合并报表数据,包括本期和上期数据;
|
156
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
157
|
+
# 4、本表中单位为人民币元;
|
158
|
+
# 5、每季更新。
|
159
|
+
def fdmt_is(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
160
|
+
end_date: '', publish_date_begin: '',
|
161
|
+
publish_date_end: '', field: '')
|
162
|
+
api_path = format(FDMTIS, report_type, sec_id, ticker, begin_date,
|
163
|
+
end_date, publish_date_begin, publish_date_end, field)
|
164
|
+
fetch_data api_path
|
165
|
+
end
|
166
|
+
|
167
|
+
# 1、根据2007年新会计准则制定的银行业利润表模板,
|
168
|
+
# 收集了2007年以来沪深上市公司定期报告中所有以此模板披露的利润表数据;
|
169
|
+
# (主要是银行业上市公司)
|
170
|
+
# 2、仅收集合并报表数据,包括本期和上期数据;
|
171
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
172
|
+
# 4、本表中单位为人民币元;
|
173
|
+
# 5、每季更新。
|
174
|
+
def fdmt_is_bank(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
175
|
+
end_date: '', publish_date_begin: '',
|
176
|
+
publish_date_end: '', field: '')
|
177
|
+
api_path = format(FDMTISBANK, report_type, sec_id, ticker, begin_date,
|
178
|
+
end_date, publish_date_begin, publish_date_end, field)
|
179
|
+
fetch_data api_path
|
180
|
+
end
|
181
|
+
|
182
|
+
# 1、根据2007年新会计准则制定的证券业利润表模板,
|
183
|
+
# 收集了2007年以来沪深上市公司定期报告中所有以此模板披露的利润表数据;
|
184
|
+
# (主要是证券业上市公司)
|
185
|
+
# 2、仅收集合并报表数据,包括本期和上期数据;
|
186
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
187
|
+
# 4、本表中单位为人民币元;
|
188
|
+
# 5、每季更新。
|
189
|
+
def fdmt_is_secu(report_type: '', sec_id: '', ticker: '', begin_date: '', end_date: '', publish_date_begin: '', publish_date_end: '', field: '')
|
190
|
+
api_path = format(FDMTISSECU, report_type, sec_id, ticker, begin_date, end_date, publish_date_begin, publish_date_end, field)
|
191
|
+
fetch_data api_path
|
192
|
+
end
|
193
|
+
|
194
|
+
# 1、根据2007年新会计准则制定的一般工商业利润表模板,
|
195
|
+
# 收集了2007年以来沪深上市公司定期报告中所有以此模板披露的利润表数据;
|
196
|
+
# (主要是一般工商业上市公司)
|
197
|
+
# 2、仅收集合并报表数据,包括本期和上期数据;
|
198
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
199
|
+
# 4、本表中单位为人民币元;
|
200
|
+
# 5、每季更新。
|
201
|
+
def fdmt_is_indu(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
202
|
+
end_date: '', publish_date_begin: '',
|
203
|
+
publish_date_end: '', field: '')
|
204
|
+
api_path = format(FDMTISINDU, report_type, sec_id, ticker, begin_date,
|
205
|
+
end_date, publish_date_begin, publish_date_end, field)
|
206
|
+
fetch_data api_path
|
207
|
+
end
|
208
|
+
|
209
|
+
# 1、根据2007年新会计准则制定的保险业利润表模板,
|
210
|
+
# 收集了2007年以来沪深上市公司定期报告中所有以此模板披露的利润表数据;
|
211
|
+
# (主要是保险业上市公司)
|
212
|
+
# 2、仅收集合并报表数据,包括本期和上期数据;
|
213
|
+
# 3、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
214
|
+
# 4、本表中单位为人民币元;
|
215
|
+
# 5、每季更新。
|
216
|
+
def fdmt_is_insu(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
217
|
+
end_date: '', publish_date_begin: '',
|
218
|
+
publish_date_end: '', field: '')
|
219
|
+
api_path = format(FDMTISINSU, report_type, sec_id, ticker, begin_date,
|
220
|
+
end_date, publish_date_begin, publish_date_end, field)
|
221
|
+
fetch_data api_path
|
222
|
+
end
|
223
|
+
|
224
|
+
# 获取2007年及以后年度上市公司披露的业绩快报中的主要财务指标等其他数据,
|
225
|
+
# 包括本期,去年同期,及本期与期初数值同比数据。
|
226
|
+
# 每季证券交易所披露相关公告时更新数据,公司ipo时发布相关信息也会同时更新。
|
227
|
+
# 每日9:00前完成证券交易所披露的数据更新,中午发布公告每日12:45前完成更新。
|
228
|
+
def fdmt_ee(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
229
|
+
end_date: '', publish_date_begin: '',
|
230
|
+
publish_date_end: '', field: '')
|
231
|
+
api_path = format(FDMTEE, report_type, sec_id, ticker, begin_date,
|
232
|
+
end_date, publish_date_begin, publish_date_end, field)
|
233
|
+
fetch_data api_path
|
234
|
+
end
|
235
|
+
|
236
|
+
# 1、获取2007年及以后年度上市公司披露的公告中的预期下一报告期收入、净利润、归属于母公司净利润、基本每股收益及其幅度变化数据。
|
237
|
+
# 2、上市公司对经营成果科目的预计情况数据一般为其上限与下限,上限取值为公告中披露该科目中绝对值较大值,下限取值为公告中披露该科目中绝对值较小值。
|
238
|
+
# 3、数值为"正"代表该公司预计盈利,数值为"负"代表该公司预计亏损。若上下限"正"、"负"符号不同,代表该公司盈利亏损情况尚不确定。
|
239
|
+
# 4、业绩预期类型以公告中文字披露预期类型为准,若公告中未有文字披露预期类型,则根据数据情况判断预期类型。
|
240
|
+
# 5、每季证券交易所披露相关公告时更新数据,公司ipo时发布相关信息也会同时更新。每日9:00前完成证券交易所披露的数据更新,中午发布公告每日12:45前完成更新。
|
241
|
+
def fdmt_ef(report_type: '', sec_id: '', ticker: '', begin_date: '',
|
242
|
+
end_date: '', forecast_type: '', publish_date_begin: '',
|
243
|
+
publish_date_end: '', field: '')
|
244
|
+
api_path = format(FDMTEF, report_type, sec_id, ticker, begin_date,
|
245
|
+
end_date, forecast_type, publish_date_begin,
|
246
|
+
publish_date_end, field)
|
247
|
+
fetch_data api_path
|
248
|
+
end
|
249
|
+
|
250
|
+
# 1、可获取上市公司最近一次数据,根据2007年新会计准则制定的合并利润表模板,仅收集合并报表数据
|
251
|
+
# 2、如果上市公司对外财务报表进行更正,调整,均有采集并对外展示;
|
252
|
+
# 3、本表中单位为人民币元;
|
253
|
+
# 4、每季更新。
|
254
|
+
def fdmt_is_lately(field: '')
|
255
|
+
api_path = format(FDMTISLATELY, field)
|
256
|
+
fetch_data api_path
|
257
|
+
end
|
258
|
+
end
|
259
|
+
end
|
260
|
+
end
|