modified get_buy/sell_rate refresh to true on notify_sell_cancel and notify_buy_cancel

This commit is contained in:
Yazeed Al Oyoun 2020-02-12 21:55:38 +01:00
parent 2e3b8cdba7
commit f09af888b1
1 changed files with 2 additions and 3 deletions

View File

@ -566,7 +566,7 @@ class FreqtradeBot:
"""
Sends rpc notification when a buy cancel occured.
"""
current_rate = self.get_buy_rate(trade.pair, False)
current_rate = self.get_buy_rate(trade.pair, True)
msg = {
'type': RPCMessageType.BUY_CANCEL_NOTIFICATION,
@ -1062,8 +1062,7 @@ class FreqtradeBot:
"""
profit_rate = trade.close_rate if trade.close_rate else trade.close_rate_requested
profit_trade = trade.calc_profit(rate=profit_rate)
# Use cached ticker here - it was updated seconds ago.
current_rate = self.get_sell_rate(trade.pair, False)
current_rate = self.get_sell_rate(trade.pair, True)
profit_percent = trade.calc_profit_ratio(profit_rate)
gain = "profit" if profit_percent > 0 else "loss"