From a18c85ec64ac7af3af1885a8246ca72fda196301 Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 16 Nov 2023 19:37:23 +0100 Subject: [PATCH] Explicitly disable stoploss on exchange for bitmart --- freqtrade/exchange/bitmart.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/freqtrade/exchange/bitmart.py b/freqtrade/exchange/bitmart.py index 67a567eb7..5d792b153 100644 --- a/freqtrade/exchange/bitmart.py +++ b/freqtrade/exchange/bitmart.py @@ -15,5 +15,6 @@ class Bitmart(Exchange): """ _ft_has: Dict = { - "ohlcv_candle_limit": 200, + "stoploss_on_exchange": False, # Bitmart API does not support stoploss orders + "ohlcv_candle_limit": 200, }