Adjust some tests to dataframe passing

This commit is contained in:
Matthias
2018-12-11 19:48:36 +01:00
parent 627ab9f583
commit fe3990af3d
5 changed files with 42 additions and 20 deletions

View File

@@ -139,7 +139,7 @@ def plot_analyzed_dataframe(args: Namespace) -> None:
if args.live:
logger.info('Downloading pair.')
exchange.refresh_tickers([pair], tick_interval)
tickers[pair] = exchange.klines[pair]
tickers[pair] = exchange.klines(pair)
else:
tickers = optimize.load_data(
datadir=_CONF.get("datadir"),