freqtrade_origin/freqtrade/exchange/bitmart.py

20 lines
360 B
Python
Raw Normal View History

2023-11-09 05:35:15 +00:00
""" Bitmart exchange subclass """
import logging
from typing import Dict
from freqtrade.exchange import Exchange
logger = logging.getLogger(__name__)
class Bitmart(Exchange):
"""
Bitmart exchange class. Contains adjustments needed for Freqtrade to work
with this exchange.
"""
_ft_has: Dict = {
"ohlcv_candle_limit": 200,
}