From 4b0b306c44a9143ac45deb53aca892165f2e9b4b Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 2 Nov 2025 12:12:25 +0100 Subject: [PATCH] fix: hyperoptable should work whenever there's any space detected. --- 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 8d567d90e..f80bbbc57 100644 --- a/freqtrade/commands/list_commands.py +++ b/freqtrade/commands/list_commands.py @@ -117,7 +117,7 @@ def _print_objs_tabular(objs: list, print_colorized: bool) -> None: if "hyperoptable" in s: objs_to_print[idx].update( { - "hyperoptable": "Yes" if s["hyperoptable"]["count"] > 0 else "No", + "hyperoptable": "Yes" if len(s["hyperoptable"]) > 0 else "No", "buy-Params": str(len(s["hyperoptable"].get("buy", []))), "sell-Params": str(len(s["hyperoptable"].get("sell", []))), }