I have installed zipline in my local PC successfully,
and then I tried to run the instructions in http://www.zipline.io/#quickstart
step by step.
$ zipline ingest (execute successfully)
$ zipline run -f dual_moving_average.py --start 2011-1-1 --end 2012-1-1 -o dma.pickle (error msg was bellow)
pandas_datareader._utils.RemoteDataError: Unable to read URL: http://www.google.com/finance/historical?q=SPY&startdate=Dec+29%2C+1989&enddate=Jan+08%2C+2018&output=csv
I have checked some discussions about this issue,
it seemed to be that benchmarks.py could not download 'SPY' data due to some website link error.
I would like to know if there is fixed package for this issue?
or if there is a quick way to avoid downloading 'SPY' data?
I just want to test if I can run backtest successfully in my local PC, thanks !!