fixed actual open_rate in notify_buy_cancel

This commit is contained in:
Yazeed Al Oyoun 2020-02-11 15:45:35 +01:00
parent f99d1c3829
commit 7f4b90c68f
1 changed files with 1 additions and 1 deletions

View File

@ -572,7 +572,7 @@ class FreqtradeBot:
'type': RPCMessageType.BUY_CANCEL_NOTIFICATION,
'exchange': self.exchange.name.capitalize(),
'pair': trade.pair,
'limit': trade.open_rate_requested,
'limit': trade.open_rate,
'order_type': order_type,
'stake_amount': trade.stake_amount,
'stake_currency': self.config['stake_currency'],