mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-14 03:41:14 +00:00
28 lines
797 B
Python
28 lines
797 B
Python
import logging
|
|
|
|
# from freqtrade.enums import MarginMode, TradingMode
|
|
from freqtrade.exchange import Exchange
|
|
from freqtrade.exchange.exchange_types import FtHas
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class Modetrade(Exchange):
|
|
"""
|
|
MOdetrade 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.
|
|
"""
|
|
|
|
_ft_has: FtHas = {
|
|
"always_require_api_keys": True, # Requires API keys to fetch candles
|
|
}
|
|
|
|
# _supported_trading_mode_margin_pairs: list[tuple[TradingMode, MarginMode]] = [
|
|
# (TradingMode.FUTURES, MarginMode.ISOLATED),
|
|
# ]
|