mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-16 04:41:15 +00:00
chore: update exchange docstrings
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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 = {
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
@@ -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
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user