From 31bec6b65e19ff1a165f693d781b5d379fbe1ea4 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 26 Feb 2026 20:11:09 +0100 Subject: [PATCH] fix: allow chinese names as pair names --- freqtrade/plugins/pairlist/pairlist_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/plugins/pairlist/pairlist_helpers.py b/freqtrade/plugins/pairlist/pairlist_helpers.py index b3138f8f2..cd48ea8fe 100644 --- a/freqtrade/plugins/pairlist/pairlist_helpers.py +++ b/freqtrade/plugins/pairlist/pairlist_helpers.py @@ -28,7 +28,7 @@ def expand_pairlist( raise ValueError(f"Wildcard error in {pair_wc}, {err}") # Remove wildcard pairs that didn't have a match. - result = [element for element in result if re.fullmatch(r"^[A-Za-z0-9:/-]+$", element)] + result = [element for element in result if re.fullmatch(r"^[\w:/-]+$", element)] else: for pair_wc in wildcardpl: