-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupdate_wind_data.py
More file actions
219 lines (177 loc) · 9.19 KB
/
update_wind_data.py
File metadata and controls
219 lines (177 loc) · 9.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#!/usr/bin/env python
# coding: utf-8
"""
续传数据
最大日期T,从T+1开始,直到当前日期
更新这些表
a_index_eod_prices
a_share_eod_prices
a_share_fin_pit
etfconstituent
"""
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
from sqlalchemy import (select,
delete)
from mkt_track_models import (AIndexDescription,
ChinaEtfPchRedmList,
ASse50Description,
AShareDescription,
AIndexEodPrice,
AShareEodPrice,
AShareFinPit)
import pandas as pd
from WindPy import w
from sqlalchemy.sql import func
import datetime
w.start()
# 初始化数据库连接:
engine = create_engine('mysql+pymysql://root:root@localhost:3306/db_mkt_track?charset=utf8', echo=True)
# 创建DBSession类型:
DBSession = sessionmaker(bind=engine)
now_dt = datetime.datetime.now()
today_date = now_dt.date()
today_yyyymmdd = now_dt.strftime('%Y%m%d')
last_date_in_wind = (w.tdaysoffset(-1, today_date).Data[0][0]).date() # 可以获取到的最新数据的交易日
def get_trade_date(trade_date, offset):
return (w.tdaysoffset(offset, trade_date).Data[0][0]).date()
def get_sse50_stk_codes():
sql = select([ASse50Description.sec_code])
df = pd.read_sql(sql, engine)
return df['sec_code'].tolist()
# 指数日行情
# TODO: 检查!好像不需要删除 AIndexEodPrice 的数据。因为是从db中已有的最大日期往后推,所以写db时肯定不会重复
def update_a_index_eod_prices():
sql = select([AIndexDescription.sec_code])
df = pd.read_sql(sql, engine)
sec_codes = df['sec_code'].tolist()
session = DBSession()
for sec_code in sec_codes:
# 查询数据库中保存的最大日期T
last_day_in_db = \
session.query(func.max(AIndexEodPrice.trade_date)).filter(AIndexEodPrice.sec_code == sec_code).one()[0]
if last_day_in_db is not None:
next_trade_date = get_trade_date(last_day_in_db, 1)
else:
next_trade_date = get_trade_date(today_yyyymmdd, -750)
# 如果需要更新的数据的日期不比可以获取到的最大日期大,才更新(有数据才更新)
if next_trade_date <= last_date_in_wind:
# 下wind的数据,多个指标,单个标的,很多天
temp = w.wsd(sec_code, "close,pct_chg", next_trade_date, last_date_in_wind, "")
df = pd.DataFrame(temp.Data).T
df.index = temp.Times
df.columns = temp.Fields
df.reset_index(inplace=True)
df.rename({'index': 'trade_date'}, axis=1, inplace=True)
df['sec_code'] = sec_code
# engine.execute(delete(AIndexEodPrice).where(
# AIndexEodPrice.trade_date.between(next_trade_date, last_date_in_wind))) # 删掉,避免重复
df.to_sql(AIndexEodPrice.__tablename__, engine, index=False, if_exists='append') # 写入
else:
print('update_a_index_eod_prices: {sec_code} 无数据更新'.format(sec_code=sec_code))
session.close()
# 更新个股日行情和pb、pe数据(因为没有pb,所以用p/b,在下载数据的时候就算好了)
# 注意,暂时只更新50的
def update_a_share_eod_prices_and_fin_pit():
sec_codes = get_sse50_stk_codes()
session = DBSession()
for sec_code in sec_codes:
# 查询数据库中保存的最大日期T
last_day_in_db = \
session.query(func.max(AShareFinPit.trade_date)).filter(AShareFinPit.sec_code == sec_code).one()[0]
if last_day_in_db is not None:
next_trade_date = get_trade_date(last_day_in_db, 1)
else:
next_trade_date = get_trade_date(today_yyyymmdd, -750)
# 下wind的数据,多个指标,单个标的,很多天
# 如果需要更新的数据的日期不比可以获取到的最大日期大,才更新(有数据才更新)
if next_trade_date <= last_date_in_wind:
temp = w.wsd(sec_code, "pe_ttm,fa_bps,close,pct_chg,adjfactor", next_trade_date, last_date_in_wind, "")
df = pd.DataFrame(temp.Data).T
df.index = temp.Times
df.columns = temp.Fields
df.reset_index(inplace=True)
df.rename({'index': 'trade_date',
'CLOSE': 'close',
'PE_TTM': 'pe_ttm',
'FA_BPS': 'fa_bps',
'PCT_CHG': 'pct_chg',
'ADJFACTOR': 'adjfactor'}, axis=1, inplace=True)
df['sec_code'] = sec_code
df['pb'] = df['close'] / df['fa_bps']
# 先删后插
# engine.execute(
# delete(AShareFinPit).where(AShareFinPit.trade_date.between(next_trade_date, last_date_in_wind)))
df[['sec_code', 'trade_date', 'pe_ttm', 'fa_bps', 'pb']].to_sql(AShareFinPit.__tablename__, engine,
index=False, if_exists='append') # 写入
# delete(AShareEodPrice).where(
# AShareEodPrice.trade_date.between(next_trade_date, last_date_in_wind))
df[['sec_code', 'trade_date', 'close', 'pct_chg', 'adjfactor']].to_sql(AShareEodPrice.__tablename__,
engine,
index=False,
if_exists='append') # 写入
else:
print('update_a_share_fin_pit: {sec_code} 无数据更新'.format(sec_code=sec_code))
session.close()
def update_a_share_description():
temp = w.wset("sectorconstituent",
"date={today_yyyymmdd};sectorid=a001010100000000".format(today_yyyymmdd=today_yyyymmdd))
df = pd.DataFrame(temp.Data[1:]).T
df.columns = temp.Fields[1:]
df.rename({'wind_code': 'sec_code'}, axis=1, inplace=True)
sql = select([AShareDescription.sec_code])
df_in_db = pd.read_sql(sql, engine)
sec_codes_in_db = df_in_db['sec_code'].tolist()
# TODO: 保存全部A股,更新全部,包括名称
df_to_save = df.query('sec_code not in @sec_codes_in_db')
df_to_save.to_sql(AShareDescription.__tablename__, con=engine, index=False, if_exists='append')
# 更新最新的成分股列表
def update_a_sse50_description():
temp = w.wset("sectorconstituent", "date={today_yyyymmdd};windcode=000016.SH".format(today_yyyymmdd=today_yyyymmdd))
latest_df = pd.DataFrame(temp.Data[1:]).T
latest_df.columns = temp.Fields[1:]
latest_df.rename({'wind_code': 'sec_code'}, axis=1, inplace=True)
engine.execute(delete(ASse50Description)) # 删掉,避免重复
latest_df.to_sql(ASse50Description.__tablename__, con=engine, index=False, if_exists='append')
def update_etfconstituent_his():
session = DBSession()
last_day_in_db = session.query(func.max(ChinaEtfPchRedmList.trade_date)).one()[0]
if last_day_in_db is not None:
next_trade_date = get_trade_date(last_day_in_db, 1)
else:
next_trade_date = get_trade_date(today_yyyymmdd, -750)
if next_trade_date <= last_date_in_wind:
temp = w.tdays(next_trade_date, last_date_in_wind, "")
trade_dates = temp.Data[0]
for trade_date in trade_dates:
temp = w.wset("etfconstituent",
"date={today_yyyymmdd};windcode=510050.SH;"
"field=wind_code,volume,cash_substitution_mark,"
"cash_substitution_premium_ratio,fixed_substitution_amount".format(
today_yyyymmdd=trade_date.strftime('%Y%m%d')))
df = pd.DataFrame(temp.Data).T
df.columns = temp.Fields
df.rename({'wind_code': 'sec_code'}, axis=1, inplace=True)
df['etf_sec_code'] = '510050.SH'
df['trade_date'] = trade_date
df.to_sql(ChinaEtfPchRedmList.__tablename__, engine, index=False, if_exists='append')
def update_etfconstituent_today():
trade_date = datetime.datetime.now().date()
temp = w.wset("etfconstituent",
"date={today_yyyymmdd};windcode=510050.SH;"
"field=wind_code,volume,cash_substitution_mark,"
"cash_substitution_premium_ratio,fixed_substitution_amount".format(
today_yyyymmdd=trade_date.strftime('%Y%m%d')))
df = pd.DataFrame(temp.Data).T
df.columns = temp.Fields
df.rename({'wind_code': 'sec_code'}, axis=1, inplace=True)
df['etf_sec_code'] = '510050.SH'
df['trade_date'] = trade_date
df.to_sql(ChinaEtfPchRedmList.__tablename__, engine, index=False, if_exists='append')
# 主程序
# update_a_share_description() # 所有A股
# update_a_sse50_description() # 更换成分股后运行
update_a_index_eod_prices() # 指数日行情
update_a_share_eod_prices_and_fin_pit() # 更新个股日行情和pb、pe数据(因为没有pb,所以用p/b,在下载数据的时候就算好了)
# update_etfconstituent_his() # 更新etf历史申赎清单
update_etfconstituent_today() # 更新今日etf申赎清单(盘前公布,昨日价格)