From 3a83427f92430f35e1cca74f8c4f4b1a2a6127eb Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 8 Jan 2023 11:40:24 +0100 Subject: [PATCH] Add Bybit stoploss support --- freqtrade/exchange/bybit.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/freqtrade/exchange/bybit.py b/freqtrade/exchange/bybit.py index e9e75b8af..9cef27591 100644 --- a/freqtrade/exchange/bybit.py +++ b/freqtrade/exchange/bybit.py @@ -32,6 +32,8 @@ class Bybit(Exchange): "ohlcv_candle_limit": 200, "ohlcv_has_history": True, "mark_ohlcv_timeframe": "4h", + "stoploss_on_exchange": True, + "stoploss_order_types": {"limit": "limit", "market": "market"}, } _supported_trading_mode_margin_pairs: List[Tuple[TradingMode, MarginMode]] = [