Add max buys on status table

This commit is contained in:
Stefano Ariestasia 2022-01-21 08:27:54 +00:00
parent f3a152a5a2
commit 3249f9fb98
1 changed files with 2 additions and 1 deletions

View File

@ -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: