Merge pull request #1404 from freqtrade/feat/pass_df

keep DF instead of list
This commit is contained in:
Matthias
2018-12-13 20:14:32 +01:00
committed by GitHub
13 changed files with 81 additions and 47 deletions

View File

@@ -362,7 +362,7 @@ class Backtesting(object):
if self.config.get('live'):
logger.info('Downloading data for all pairs in whitelist ...')
self.exchange.refresh_tickers(pairs, self.ticker_interval)
data = self.exchange.klines
data = self.exchange._klines
else:
logger.info('Using local backtesting data (using whitelist in given config) ...')