diff --git a/freqtrade/exchange/bitget.py b/freqtrade/exchange/bitget.py index 277ae5532..72aaf44cb 100644 --- a/freqtrade/exchange/bitget.py +++ b/freqtrade/exchange/bitget.py @@ -34,16 +34,16 @@ class Bitget(Exchange): "stoploss_query_requires_stop_flag": True, "ohlcv_candle_limit": 200, # 200 for historical candles, 1000 for recent ones. "order_time_in_force": ["GTC", "FOK", "IOC", "PO"], + } + _ft_has_futures: FtHas = { + "funding_fee_candle_limit": 100, + "has_delisting": True, "stop_price_type_field": "triggerType", "stop_price_type_value_mapping": { PriceType.LAST: "fill_price", PriceType.MARK: "mark_price", }, } - _ft_has_futures: FtHas = { - "funding_fee_candle_limit": 100, - "has_delisting": True, - } _supported_trading_mode_margin_pairs: list[tuple[TradingMode, MarginMode]] = [ (TradingMode.SPOT, MarginMode.NONE),