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):
"""Binance exchange class.
Contains adjustments needed for Freqtrade to work with this exchange.
"""
_ft_has: FtHas = {
"stoploss_on_exchange": True,
"stop_price_param": "stopPrice",

View File

@@ -16,13 +16,8 @@ logger = logging.getLogger(__name__)
class Bybit(Exchange):
"""
Bybit exchange class. Contains adjustments needed for Freqtrade to work
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.
"""Bybit exchange class.
Contains adjustments needed for Freqtrade to work with this exchange.
"""
unified_account = False

View File

@@ -18,13 +18,8 @@ logger = logging.getLogger(__name__)
class Gate(Exchange):
"""
Gate.io exchange class. Contains adjustments needed for Freqtrade to work
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.
"""Gate.io exchange class.
Contains adjustments needed for Freqtrade to work with this exchange.
"""
unified_account = False

View File

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

View File

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

View File

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