freqtrade_origin/freqtrade/exchange/cryptocom.py

20 lines
364 B
Python
Raw Normal View History

"""Crypto.com exchange subclass"""
import logging
from typing import Dict
from freqtrade.exchange import Exchange
logger = logging.getLogger(__name__)
class Cryptocom(Exchange):
2024-07-14 07:08:36 +00:00
"""Crypto.com exchange class.
Contains adjustments needed for Freqtrade to work with this exchange.
"""
_ft_has: Dict = {
"ohlcv_candle_limit": 300,
}