From 3c43e3dae326a5e498530952f20b8c7737ef879e Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 26 Mar 2026 07:00:22 +0100 Subject: [PATCH] feat: improve stop price type not supported message --- freqtrade/exchange/exchange.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/freqtrade/exchange/exchange.py b/freqtrade/exchange/exchange.py index b6daafd54..54d2bde51 100644 --- a/freqtrade/exchange/exchange.py +++ b/freqtrade/exchange/exchange.py @@ -825,7 +825,8 @@ class Exchange: and order_types["stoploss_price_type"] not in price_mapping ): raise ConfigurationError( - f"On exchange stoploss price type is not supported for {self.name}." + f"On exchange stoploss price type '{order_types['stoploss_price_type']}' " + f"is not supported for {self.name}." ) def validate_pricing(self, pricing: dict) -> None: