freqtrade_origin/freqtrade/exchange/cryptocom.py
2024-09-04 07:15:17 +02:00

20 lines
393 B
Python

"""Crypto.com exchange subclass"""
import logging
from freqtrade.exchange import Exchange
from freqtrade.exchange.exchange_types import FtHas
logger = logging.getLogger(__name__)
class Cryptocom(Exchange):
"""Crypto.com exchange class.
Contains adjustments needed for Freqtrade to work with this exchange.
"""
_ft_has: FtHas = {
"ohlcv_candle_limit": 300,
}