Make sure the fiat converter exists before calling it

This commit is contained in:
Mads Sørensen 2021-04-02 14:50:47 +02:00
parent ede26091b9
commit 3691ae8686

View File

@ -175,11 +175,12 @@ class RPC:
current_profit_abs = trade.calc_profit(current_rate) current_profit_abs = trade.calc_profit(current_rate)
# Calculate fiat profit # Calculate fiat profit
current_profit_fiat = self._fiat_converter.convert_amount( if self._fiat_converter:
current_profit_abs, current_profit_fiat = self._fiat_converter.convert_amount(
self._freqtrade.config['stake_currency'], current_profit_abs,
self._freqtrade.config['fiat_display_currency'] self._freqtrade.config['stake_currency'],
) self._freqtrade.config['fiat_display_currency']
)
# Calculate guaranteed profit (in case of trailing stop) # Calculate guaranteed profit (in case of trailing stop)
stoploss_entry_dist = trade.calc_profit(trade.stop_loss) stoploss_entry_dist = trade.calc_profit(trade.stop_loss)