-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathquandl_eod.py
267 lines (220 loc) · 7.77 KB
/
quandl_eod.py
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
"""
Module for building a complete daily dataset from Quandl's EOD dataset.
Source Code Inspiration: https://github.com/quantopian/zipline/issues/2603
"""
from io import BytesIO
import tarfile
from zipfile import ZipFile
from click import progressbar
from logbook import Logger
import pandas as pd
import requests
from six.moves.urllib.parse import urlencode
from six import iteritems
from trading_calendars import register_calendar_alias
from . import core as bundles
import numpy as np
log = Logger(__name__)
ONE_MEGABYTE = 1024 * 1024
QUANDL_DATA_URL = "https://www.quandl.com/api/v3/databases/EOD/data?"
def format_metadata_url(api_key):
""" Build the query URL for Quandl WIKI Prices metadata.
"""
query_params = [("api_key", api_key), ("download_type", "full")]
return QUANDL_DATA_URL + urlencode(query_params)
def load_data_table(file, index_col, show_progress=False):
""" Load data table from zip file provided by Quandl.
"""
with ZipFile(file) as zip_file:
file_names = zip_file.namelist()
assert len(file_names) == 1, "Expected a single file from Quandl."
eod_prices = file_names.pop()
with zip_file.open(eod_prices) as table_file:
if show_progress:
log.info("Parsing raw data.")
data_table = pd.read_csv(
table_file,
header=None,
names=[
"symbol",
"date",
"open",
"high",
"low",
"close",
"volume",
"ex_dividend",
"split_ratio",
"adjusted_open",
"adjusted_high",
"adjusted_low",
"adjusted_close",
"adjusted_volume",
],
parse_dates=["date"],
index_col=index_col,
usecols=[
"symbol",
"date",
"open",
"high",
"low",
"close",
"volume",
"ex_dividend",
"split_ratio",
],
)
return data_table
def fetch_data_table(api_key, show_progress, retries):
""" Fetch WIKI Prices data table from Quandl
"""
for _ in range(retries):
try:
if show_progress:
log.info("Downloading WIKI metadata.")
# Extract link from metadata and download zip file.
table_url = format_metadata_url(api_key)
if show_progress:
raw_file = download_with_progress(
table_url,
chunk_size=ONE_MEGABYTE,
label="Downloading WIKI Prices table from Quandl",
)
else:
raw_file = download_without_progress(table_url)
return load_data_table(
file=raw_file, index_col=None, show_progress=show_progress
)
except Exception:
log.exception("Exception raised reading Quandl data. Retrying.")
else:
raise ValueError(
"Failed to download Quandl data after %d attempts." % (retries)
)
def gen_asset_metadata(data, show_progress):
if show_progress:
log.info("Generating asset metadata.")
data = data.groupby(by="symbol").agg({"date": [np.min, np.max]})
data.reset_index(inplace=True)
data["start_date"] = data.date.amin
data["end_date"] = data.date.amax
del data["date"]
data.columns = data.columns.get_level_values(0)
data["exchange"] = "QUANDL-EOD"
data["auto_close_date"] = data["end_date"].values + pd.Timedelta(days=1)
return data
def parse_splits(data, show_progress):
if show_progress:
log.info("Parsing split data.")
data["split_ratio"] = 1.0 / data.split_ratio
data.rename(
columns={"split_ratio": "ratio", "date": "effective_date"},
inplace=True,
copy=False,
)
return data
def parse_dividends(data, show_progress):
if show_progress:
log.info("Parsing dividend data.")
data["record_date"] = data["declared_date"] = data["pay_date"] = pd.NaT
data.rename(
columns={"ex_dividend": "amount", "date": "ex_date"}, inplace=True, copy=False
)
return data
def parse_pricing_and_vol(data, sessions, symbol_map):
for asset_id, symbol in iteritems(symbol_map):
asset_data = (
data.xs(symbol, level=1).reindex(sessions.tz_localize(None)).fillna(0.0)
)
yield asset_id, asset_data
@bundles.register("quandl_eod")
def quandl_eod_bundle(environ,
asset_db_writer,
minute_bar_writer,
daily_bar_writer,
adjustment_writer,
calendar,
start_session,
end_session,
cache,
show_progress,
output_dir):
"""
quandl_bundle builds a daily dataset using Quandl's WIKI Prices dataset.
For more information on Quandl's API and how to obtain an API key,
please visit https://docs.quandl.com/docs#section-authentication
"""
api_key = environ.get("QUANDL_API_KEY")
if api_key is None:
raise ValueError(
"Please set your QUANDL_API_KEY environment variable and retry."
)
raw_data = fetch_data_table(
api_key, show_progress, environ.get("QUANDL_DOWNLOAD_ATTEMPTS", 5)
)
asset_metadata = gen_asset_metadata(raw_data[["symbol", "date"]], show_progress)
asset_db_writer.write(asset_metadata)
symbol_map = asset_metadata.symbol
sessions = calendar.sessions_in_range(start_session, end_session)
raw_data.set_index(["date", "symbol"], inplace=True)
daily_bar_writer.write(
parse_pricing_and_vol(raw_data, sessions, symbol_map),
show_progress=show_progress,
)
raw_data.reset_index(inplace=True)
raw_data["symbol"] = raw_data["symbol"].astype("category")
raw_data["sid"] = raw_data.symbol.cat.codes
adjustment_writer.write(
splits=parse_splits(
raw_data[["sid", "date", "split_ratio"]].loc[raw_data.split_ratio != 1],
show_progress=show_progress,
),
dividends=parse_dividends(
raw_data[["sid", "date", "ex_dividend"]].loc[raw_data.ex_dividend != 0],
show_progress=show_progress,
),
)
def download_with_progress(url, chunk_size, **progress_kwargs):
"""
Download streaming data from a URL, printing progress information to the
terminal.
Parameters
----------
url : str
A URL that can be understood by ``requests.get``.
chunk_size : int
Number of bytes to read at a time from requests.
**progress_kwargs
Forwarded to click.progressbar.
Returns
-------
data : BytesIO
A BytesIO containing the downloaded data.
"""
resp = requests.get(url, stream=True)
resp.raise_for_status()
total_size = int(resp.headers["content-length"])
data = BytesIO()
with progressbar(length=total_size, **progress_kwargs) as pbar:
for chunk in resp.iter_content(chunk_size=chunk_size):
data.write(chunk)
pbar.update(len(chunk))
data.seek(0)
return data
def download_without_progress(url):
"""
Download data from a URL, returning a BytesIO containing the loaded data.
Parameters
----------
url : str
A URL that can be understood by ``requests.get``.
Returns
-------
data : BytesIO
A BytesIO containing the downloaded data.
"""
resp = requests.get(url)
resp.raise_for_status()
return BytesIO(resp.content)
register_calendar_alias("QUANDL-EOD", "NYSE")