Allow last to be empty -

closes #3005
This commit is contained in:
Matthias
2020-03-02 20:05:54 +01:00
parent b6839289ec
commit 6e2290c4f0
2 changed files with 11 additions and 5 deletions

View File

@@ -257,12 +257,10 @@ class FreqtradeBot:
else:
logger.info(f"Using Last {bid_strategy['price_side'].capitalize()} / Last Price")
ticker = self.exchange.fetch_ticker(pair)
rate = ticker[bid_strategy['price_side']]
if rate < ticker['last']:
ticker_rate = rate
else:
ticker_rate = ticker[bid_strategy['price_side']]
if ticker['last'] and ticker_rate > ticker['last']:
balance = self.config['bid_strategy']['ask_last_balance']
ticker_rate = rate + balance * (ticker['last'] - rate)
ticker_rate = ticker_rate + balance * (ticker['last'] - ticker_rate)
used_rate = ticker_rate
self._buy_rate_cache[pair] = used_rate