fixed open_rate instead of open_rate_requested

This commit is contained in:
Yazeed Al Oyoun 2020-02-11 15:44:47 +01:00
parent d69ddd2ac3
commit f99d1c3829
1 changed files with 1 additions and 1 deletions

View File

@ -549,7 +549,7 @@ class FreqtradeBot:
'type': RPCMessageType.BUY_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'],