Always return dataframe

This commit is contained in:
Matthias
2018-12-29 13:00:50 +01:00
parent 2b029b2a86
commit 646e98da55
4 changed files with 7 additions and 6 deletions

View File

@@ -162,7 +162,7 @@ class Exchange(object):
if pair in self._klines:
return self._klines[pair].copy() if copy else self._klines[pair]
else:
return None
return DataFrame()
def set_sandbox(self, api, exchange_config: dict, name: str):
if exchange_config.get('sandbox'):