mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
24 lines
547 B
Python
24 lines
547 B
Python
|
"""Kucoin exchange subclass."""
|
||
|
import logging
|
||
|
from typing import Dict
|
||
|
|
||
|
from freqtrade.exchange import Exchange
|
||
|
|
||
|
|
||
|
logger = logging.getLogger(__name__)
|
||
|
|
||
|
|
||
|
class Bitvavo(Exchange):
|
||
|
"""Bitvavo exchange class.
|
||
|
|
||
|
Contains adjustments needed for Freqtrade to work with this exchange.
|
||
|
|
||
|
Please note that this exchange is not included in the list of exchanges
|
||
|
officially supported by the Freqtrade development team. So some features
|
||
|
may still not work as expected.
|
||
|
"""
|
||
|
|
||
|
_ft_has: Dict = {
|
||
|
"ohlcv_candle_limit": 1440,
|
||
|
}
|