From 1818215fee33a80b0d30d3d4fcc112cb15f5cfb4 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 10 Nov 2024 10:11:15 +0100 Subject: [PATCH] feat: add MultiMetricLoss to "builtin hyperopt loss" list --- freqtrade/constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/freqtrade/constants.py b/freqtrade/constants.py index 66a89a6f0..020acf333 100644 --- a/freqtrade/constants.py +++ b/freqtrade/constants.py @@ -38,6 +38,7 @@ HYPEROPT_LOSS_BUILTIN = [ "MaxDrawDownHyperOptLoss", "MaxDrawDownRelativeHyperOptLoss", "ProfitDrawDownHyperOptLoss", + "MultiMetricHyperOptLoss", ] AVAILABLE_PAIRLISTS = [ "StaticPairList",