chore: Add cryptocom base exchange class

adjust candle-limit to the appropriate number
This commit is contained in:
Matthias 2024-07-12 07:09:52 +02:00
parent 7eb38f7e5e
commit 50dcd04816
2 changed files with 21 additions and 0 deletions

View File

@ -11,6 +11,7 @@ from freqtrade.exchange.bitpanda import Bitpanda
from freqtrade.exchange.bitvavo import Bitvavo
from freqtrade.exchange.bybit import Bybit
from freqtrade.exchange.coinbasepro import Coinbasepro
from freqtrade.exchange.cryptocom import Cryptocom
from freqtrade.exchange.exchange_utils import (
ROUND_DOWN,
ROUND_UP,

View File

@ -0,0 +1,20 @@
"""Crypto.com exchange subclass"""
import logging
from typing import Dict
from freqtrade.exchange import Exchange
logger = logging.getLogger(__name__)
class Cryptocom(Exchange):
"""
Crypto.com exchange class. Contains adjustments needed for Freqtrade to work
with this exchange.
"""
_ft_has: Dict = {
"ohlcv_candle_limit": 300,
}