feat: improve stop price type not supported message

This commit is contained in:
Matthias
2026-03-26 07:00:22 +01:00
parent 515a754dc4
commit 3c43e3dae3
+2 -1
View File
@@ -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: