From e22bf5c681f06ae102c246e9b03ddb775fb13fa9 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 4 Nov 2025 07:16:57 +0100 Subject: [PATCH] chore: non-loaded strategies shouldn't show as hyperoptable --- freqtrade/commands/list_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/commands/list_commands.py b/freqtrade/commands/list_commands.py index 2041eb64d..4c066053a 100644 --- a/freqtrade/commands/list_commands.py +++ b/freqtrade/commands/list_commands.py @@ -156,7 +156,7 @@ def start_list_strategies(args: dict[str, Any]) -> None: if obj["class"]: obj["hyperoptable"] = detect_all_parameters(obj["class"]) else: - obj["hyperoptable"] = {"count": 0} + obj["hyperoptable"] = {} if args["print_one_column"]: print("\n".join([s["name"] for s in strategy_objs]))