Skip to content

Commit dcd9e2e

Browse files
committed
feat: bitget stop orders don't block assets
1 parent 46dc378 commit dcd9e2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

freqtrade/exchange/bitget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ class Bitget(Exchange):
2929
"stoploss_on_exchange": True,
3030
"stop_price_param": "stopPrice",
3131
"stop_price_prop": "stopPrice",
32+
"stoploss_blocks_assets": False, # Stoploss orders do not block assets
3233
"stoploss_order_types": {"limit": "limit", "market": "market"},
3334
"ohlcv_candle_limit": 200, # 200 for historical candles, 1000 for recent ones.
3435
"order_time_in_force": ["GTC", "FOK", "IOC", "PO"],
3536
}
3637
_ft_has_futures: FtHas = {
3738
"mark_ohlcv_timeframe": "4h",
3839
"funding_fee_candle_limit": 100,
39-
"stoploss_blocks_assets": False, # Stoploss orders do not block assets
4040
}
4141

4242
_supported_trading_mode_margin_pairs: list[tuple[TradingMode, MarginMode]] = [

0 commit comments

Comments
 (0)