Source code for CryptoPrice.retrievers.KucoinRetriever

import datetime
from typing import List

from kucoin.client import Market

from CryptoPrice.common.trade import TradingPair
from CryptoPrice.exceptions import RateAPIException
from CryptoPrice.retrievers.KlineRetriever import KlineRetriever
from CryptoPrice.common.prices import Kline
from CryptoPrice.utils.time import TIMEFRAME


[docs]class KucoinRetriever(KlineRetriever): """ docs: https://github.com/Kucoin/kucoin-python-sdk https://docs.kucoin.com """ kline_translation = { TIMEFRAME.m1: '1min', TIMEFRAME.m3: '3min', TIMEFRAME.m5: '5min', TIMEFRAME.m15: '15min', TIMEFRAME.m30: '30min', TIMEFRAME.h1: '1hour', TIMEFRAME.h2: '2hour', TIMEFRAME.h4: '4hour', TIMEFRAME.h6: '6hour', TIMEFRAME.h8: '8hour', TIMEFRAME.h12: '12hour', TIMEFRAME.d1: '1day', TIMEFRAME.w1: '1week' }
[docs] def __init__(self, kline_timeframe: TIMEFRAME = TIMEFRAME.m1, closest_window: int = 310): self.client = Market(url='https://api.kucoin.com') super(KucoinRetriever, self).__init__('kucoin', kline_timeframe, closest_window)
[docs] def get_supported_pairs(self) -> List[TradingPair]: """ Return the list of trading pair supported by this retriever :return: list of trading pairs :rtype: List[TradingPair] """ symbols = self.client.get_symbol_list() return [TradingPair(s['symbol'], s['baseCurrency'], s['quoteCurrency'], source=self.name) for s in symbols]
def _get_klines_online(self, asset: str, ref_asset: str, timeframe: TIMEFRAME, start_time: int, end_time: int) -> List[Kline]: """ Fetch klines online by asking the Kucoin API :param asset: asset of the trading pair :type asset: str :param ref_asset: reference asset of the trading pair :type ref_asset: str :param timeframe: timeframe for the kline :type timeframe: TIMEFRAME :param start_time: fetch only klines with an open time greater or equal than start_time :type start_time: Optional[int] :param end_time: fetch only klines with an open time lower than end_time :type end_time: Optional[int] :return: list of klines :rtype: List[Kline] """ pair_name = f"{asset}-{ref_asset}" batch_size = 1500 interval_trad = self.kline_translation[timeframe] try: result = self.client.get_kline(symbol=pair_name, kline_type=interval_trad, startAt=start_time, endAt=end_time, pageSize=batch_size) if not isinstance(result, List): # valid trading pair but no data return [] except Exception as e: if e.__class__ == Exception: # kucoin.client's exceptions are from the base class only try: error_content = e.args[0] # error code and error message from kucoin.client are in a single string except (IndexError, TypeError): raise e if "403" in error_content: # kucoin.client's for rate limit retry_after = 1 + 60 - datetime.datetime.now().timestamp() % 60 # time until next minute raise RateAPIException(retry_after) elif "400100" in error_content: # invalid parameters -> trading pair not supported return [] raise e klines = [] for row in result: open_timestamp = int(row[0]) open = float(row[1]) close = float(row[2]) high = float(row[3]) low = float(row[4]) klines.append(Kline(open_timestamp, open, high, low, close, asset, ref_asset, timeframe, source=self.name)) return klines