freqtrade_origin/freqtrade/exchange/cryptocom.py

20 lines
393 B
Python
Raw Normal View History

"""Crypto.com exchange subclass"""
import logging
from freqtrade.exchange import Exchange
2024-09-04 05:15:17 +00:00
from freqtrade.exchange.exchange_types import FtHas
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.
"""
2024-09-04 05:15:17 +00:00
_ft_has: FtHas = {
"ohlcv_candle_limit": 300,
}