buy & sell order book update: move up book order position to 1

This commit is contained in:
Nullart 2018-06-15 11:03:44 +08:00
parent f52a7eef6a
commit bd1ef7a813

View File

@ -258,7 +258,7 @@ class FreqtradeBot(object):
# if ticker has lower rate, then use ticker ( usefull if down trending )
if ticker_rate < orderBook_rate:
return ticker_rate
return orderBook_rate
return orderBook_rate+0.00000001
else:
logger.info('Using Ask / Last Price')
return ticker_rate
@ -456,7 +456,7 @@ with limit `{buy_limit:.8f} ({stake_amount:.6f} \
# if orderbook has higher rate (high profit),
# use orderbook, otherwise just use sell rate
if (sell_rate < orderBook_rate):
sell_rate = orderBook_rate
sell_rate = orderBook_rate-0.00000001
if self.check_sell(trade, sell_rate, buy, sell):
return True