Fix failing CustomDataRegressionAlgorithm

This commit is contained in:
Stefano Raggi
2018-10-22 14:48:16 +02:00
parent 1397b648cd
commit ea55b8ba09
2 changed files with 2 additions and 2 deletions
@@ -60,7 +60,7 @@ class Bitcoin(PythonData):
#return "http://my-ftp-server.com/futures-data-" + date.ToString("Ymd") + ".zip"
# OR simply return a fixed small data file. Large files will slow down your backtest
return SubscriptionDataSource("https://www.quandl.com/api/v3/datasets/BCHARTS/BITSTAMPUSD.csv?order=asc&api_key=WyAazVXnq7ATy_fefTqm", SubscriptionTransportMedium.RemoteFile)
return SubscriptionDataSource("https://www.quantconnect.com/api/v2/proxy/quandl/api/v3/datasets/BCHARTS/BITSTAMPUSD.csv?order=asc&api_key=WyAazVXnq7ATy_fefTqm", SubscriptionTransportMedium.RemoteFile)
def Reader(self, config, line, date, isLiveMode):