我正在尝试通过终端here运行zipline
buyapple.py
示例:
zipline run -f ../../zipline/examples/buyapple.py --start 2000-1-1 --end 2014-1-1 -o buyapple_out.pickle
但它会导致以下错误:
request.py", line 1320, in do_open raise URLError(err)
urllib.error.URLError: <urlopen error [Errno 11001] getaddrinfo failed>
有人知道什么是错的吗?
答案 0 :(得分:0)
似乎与Yahoo&#S; S finance API有关。 我使用以下方法来解决此问题:
pip install pandas-datareader
pip install fix-yahoo-finance-0.0.18.tar from here
然后使用用户edmunch提供的folloiwng代码修补ziplines Benchmarks.py:
import pandas as pd
from six.moves.urllib_parse import urlencode
import pandas_datareader as pdr #NEW
import fix_yahoo_finance as yf #NEW
yf.pdr_override()#NEW
def get_benchmark_returns(symbol, start_date, end_date):
print('NEW')
df = pdr.data.get_data_yahoo(symbol, start=start_date, end=end_date)
df.to_csv('{}_D1.csv'.format(symbol))
return pd.read_csv('{}_D1.csv'.format(symbol),
parse_dates=['Date'],
index_col='Date',
usecols=["Adj Close", "Date"],
squeeze=True, # squeeze tells pandas to make this a Series
# instead of a 1-column DataFrame
).sort_index().tz_localize('UTC').pct_change(1).iloc[1:]