Rename refresh_tickers to refresh_latest_ohlcv

This commit is contained in:
Matthias
2018-12-29 13:13:07 +01:00
parent 06ec106079
commit a206777fe5
8 changed files with 14 additions and 13 deletions

View File

@@ -158,9 +158,9 @@ class FreqtradeBot(object):
self.active_pair_whitelist = self.pairlists.whitelist
# Calculating Edge positiong
# Should be called before refresh_tickers
# Should be called before refresh_latest_ohlcv
# Otherwise it will override cached klines in exchange
# with delta value (klines only from last refresh_pairs)
# with delta value (klines only from last refresh_latest_ohlcv)
if self.edge:
self.edge.calculate()
self.active_pair_whitelist = self.edge.adjust(self.active_pair_whitelist)