increment limit to adjust to FTX defaults (1500 candles)

This commit is contained in:
Matthias
2020-02-16 13:20:11 +01:00
parent 36670fb5d9
commit 3787ac7b98
2 changed files with 24 additions and 8 deletions

14
freqtrade/exchange/ftx.py Normal file
View File

@@ -0,0 +1,14 @@
""" FTX exchange subclass """
import logging
from typing import Dict
from freqtrade.exchange import Exchange
logger = logging.getLogger(__name__)
class Ftx(Exchange):
_ft_has: Dict = {
"ohlcv_candle_limit": 1500,
}