Forgot to save

This commit is contained in:
Matthias
2019-12-23 19:32:31 +01:00
parent ecbb77c17f
commit c6b9c8eca0
2 changed files with 3 additions and 3 deletions

View File

@@ -96,7 +96,7 @@ class Edge:
if self._refresh_pairs:
history.refresh_data(
datadir=Path(self.config['datadir']),
datadir=self.config['datadir'],
pairs=pairs,
exchange=self.exchange,
timeframe=self.strategy.ticker_interval,
@@ -104,7 +104,7 @@ class Edge:
)
data = history.load_data(
datadir=Path(self.config['datadir']),
datadir=self.config['datadir'],
pairs=pairs,
timeframe=self.strategy.ticker_interval,
timerange=self._timerange,