Skip to content

Commit

Permalink
fixed actual open_rate in notify_buy_cancel
Browse files Browse the repository at this point in the history
  • Loading branch information
yazeed committed Feb 11, 2020
1 parent f99d1c3 commit 7f4b90c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion freqtrade/freqtradebot.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ def _notify_buy_cancel(self, trade: Trade, order_type: str) -> None:
'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'],
Expand Down

0 comments on commit 7f4b90c

Please sign in to comment.