Okex -> okx

This commit is contained in:
Matthias
2022-02-08 19:45:39 +01:00
parent 172e018d2d
commit 1d10d2c87c
9 changed files with 14 additions and 13 deletions

18
freqtrade/exchange/okx.py Normal file
View File

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