Use list ticker history for backtesting

This commit is contained in:
Matthias
2018-12-11 20:07:14 +01:00
parent fe3990af3d
commit 7a533de1a8
4 changed files with 10 additions and 10 deletions

View File

@@ -159,7 +159,7 @@ class Exchange(object):
def klines(self, pair: str) -> DataFrame:
if pair in self._klines:
return self._klines.get(pair).copy()
return self._klines[pair].copy()
else:
return None