diff --git a/freqtrade/rpc/rpc.py b/freqtrade/rpc/rpc.py index a6813f0d2..06f3b9cb2 100644 --- a/freqtrade/rpc/rpc.py +++ b/freqtrade/rpc/rpc.py @@ -251,8 +251,9 @@ class RPC: profit_str ] if self._config.get('position_adjustment_enable', False): + max_buy = self._config['max_buy_position_adjustment'] + 1 filled_buys = trade.select_filled_orders('buy') - detail_trade.append(str(len(filled_buys))) + detail_trade.append(f"{len(filled_buys)}/{max_buy}") trades_list.append(detail_trade) profitcol = "Profit" if self._fiat_converter: