chore: update exchange docstrings

This commit is contained in:
Matthias
2025-10-18 08:45:32 +02:00
parent d77bcf0e18
commit 6a15f0c271
6 changed files with 15 additions and 19 deletions

View File

@@ -28,6 +28,10 @@ logger = logging.getLogger(__name__)
class Binance(Exchange): class Binance(Exchange):
"""Binance exchange class.
Contains adjustments needed for Freqtrade to work with this exchange.
"""
_ft_has: FtHas = { _ft_has: FtHas = {
"stoploss_on_exchange": True, "stoploss_on_exchange": True,
"stop_price_param": "stopPrice", "stop_price_param": "stopPrice",

View File

@@ -16,13 +16,8 @@ logger = logging.getLogger(__name__)
class Bybit(Exchange): class Bybit(Exchange):
""" """Bybit exchange class.
Bybit exchange class. Contains adjustments needed for Freqtrade to work Contains adjustments needed for Freqtrade to work with this exchange.
with this exchange.
Please note that this exchange is not included in the list of exchanges
officially supported by the Freqtrade development team. So some features
may still not work as expected.
""" """
unified_account = False unified_account = False

View File

@@ -18,13 +18,8 @@ logger = logging.getLogger(__name__)
class Gate(Exchange): class Gate(Exchange):
""" """Gate.io exchange class.
Gate.io exchange class. Contains adjustments needed for Freqtrade to work Contains adjustments needed for Freqtrade to work with this exchange.
with this exchange.
Please note that this exchange is not included in the list of exchanges
officially supported by the Freqtrade development team. So some features
may still not work as expected.
""" """
unified_account = False unified_account = False

View File

@@ -11,9 +11,8 @@ logger = logging.getLogger(__name__)
class Htx(Exchange): class Htx(Exchange):
""" """HTX exchange class.
HTX exchange class. Contains adjustments needed for Freqtrade to work Contains adjustments needed for Freqtrade to work with this exchange.
with this exchange.
""" """
_ft_has: FtHas = { _ft_has: FtHas = {

View File

@@ -19,6 +19,10 @@ logger = logging.getLogger(__name__)
class Kraken(Exchange): class Kraken(Exchange):
"""Kraken exchange class.
Contains adjustments needed for Freqtrade to work with this exchange.
"""
_params: dict = {"trading_agreement": "agree"} _params: dict = {"trading_agreement": "agree"}
_ft_has: FtHas = { _ft_has: FtHas = {
"stoploss_on_exchange": True, "stoploss_on_exchange": True,

View File

@@ -297,8 +297,7 @@ class Okx(Exchange):
class MyOkx(Okx): class MyOkx(Okx):
""" """MyOkx exchange class.
MyOkx exchange class.
Minimal adjustment to disable futures trading for the EU subsidiary of Okx Minimal adjustment to disable futures trading for the EU subsidiary of Okx
""" """