mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
21 lines
382 B
Python
21 lines
382 B
Python
"""Idex exchange subclass"""
|
|
|
|
import logging
|
|
|
|
from freqtrade.exchange import Exchange
|
|
from freqtrade.exchange.exchange_types import FtHas
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class Idex(Exchange):
|
|
"""
|
|
Idex exchange class. Contains adjustments needed for Freqtrade to work
|
|
with this exchange.
|
|
"""
|
|
|
|
_ft_has: FtHas = {
|
|
"ohlcv_candle_limit": 1000,
|
|
}
|