diff --git a/freqtrade/plugins/pairlist/PercentChangePairList.py b/freqtrade/plugins/pairlist/PercentChangePairList.py index 9deefdfd403..2e0cb268167 100644 --- a/freqtrade/plugins/pairlist/PercentChangePairList.py +++ b/freqtrade/plugins/pairlist/PercentChangePairList.py @@ -316,11 +316,8 @@ def fetch_percent_change_from_tickers( valid_tickers: list[SymbolWithPercentage] = [] for p in filtered_tickers: # Filter out assets - if ( - self._validate_pair( - p["symbol"], tickers[p["symbol"]] if p["symbol"] in tickers else None - ) - and p["symbol"] != "UNI/USDT" + if self._validate_pair( + p["symbol"], tickers[p["symbol"]] if p["symbol"] in tickers else None ): p["percentage"] = tickers[p["symbol"]]["percentage"] valid_tickers.append(p)