From 81fcd5ea5adee9c7c85b241facc0d69006ab5086 Mon Sep 17 00:00:00 2001 From: ABS <53243996+ABSllk@users.noreply.github.com> Date: Sun, 12 Apr 2026 02:42:35 +0800 Subject: [PATCH] fix(bitget): use stopLossPrice mapping for futures stoploss handling --- freqtrade/exchange/bitget.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/freqtrade/exchange/bitget.py b/freqtrade/exchange/bitget.py index 72aaf44cb..9691f72f8 100644 --- a/freqtrade/exchange/bitget.py +++ b/freqtrade/exchange/bitget.py @@ -38,6 +38,8 @@ class Bitget(Exchange): _ft_has_futures: FtHas = { "funding_fee_candle_limit": 100, "has_delisting": True, + "stop_price_param": "stopLossPrice", + "stop_price_prop": "stopLossPrice", "stop_price_type_field": "triggerType", "stop_price_type_value_mapping": { PriceType.LAST: "fill_price",