Use bids, not asks for sell-rate detection

This commit is contained in:
Matthias
2019-03-17 11:27:01 +01:00
parent 29aa159827
commit a0e6cd93b6
2 changed files with 2 additions and 2 deletions

View File

@@ -592,7 +592,7 @@ class FreqtradeBot(object):
logger.debug('Using order book to get sell rate')
order_book = self.exchange.get_order_book(pair, 1)
rate = order_book['asks'][0][0]
rate = order_book['bids'][0][0]
else:
rate = self.exchange.get_ticker(pair, refresh)['bid']