2017-11-18 07:52:28 +00:00
|
|
|
# pragma pylint: disable=W0603
|
|
|
|
""" Cryptocurrency Exchanges support """
|
2017-05-12 17:11:56 +00:00
|
|
|
import enum
|
2017-05-14 12:14:16 +00:00
|
|
|
import logging
|
2018-01-31 14:47:08 +00:00
|
|
|
import ccxt
|
2017-11-05 14:21:16 +00:00
|
|
|
from random import randint
|
2017-11-07 17:41:48 +00:00
|
|
|
from typing import List, Dict, Any, Optional
|
2017-09-01 19:11:46 +00:00
|
|
|
|
2017-10-06 10:22:04 +00:00
|
|
|
import arrow
|
2017-11-18 21:22:45 +00:00
|
|
|
import requests
|
2017-11-11 14:29:31 +00:00
|
|
|
from cachetools import cached, TTLCache
|
2017-10-06 10:22:04 +00:00
|
|
|
|
2017-11-20 21:26:32 +00:00
|
|
|
from freqtrade import OperationalException
|
2017-10-07 16:07:29 +00:00
|
|
|
from freqtrade.exchange.interface import Exchange
|
2017-05-12 17:11:56 +00:00
|
|
|
|
2017-05-14 12:14:16 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
2017-05-12 17:11:56 +00:00
|
|
|
|
2017-09-08 21:10:22 +00:00
|
|
|
# Current selected exchange
|
2018-02-03 20:28:27 +00:00
|
|
|
_API: ccxt.Exchange = None
|
2017-10-06 10:22:04 +00:00
|
|
|
_CONF: dict = {}
|
2017-05-12 17:11:56 +00:00
|
|
|
|
2017-11-05 14:21:16 +00:00
|
|
|
# Holds all open sell orders for dry_run
|
2017-11-05 15:12:58 +00:00
|
|
|
_DRY_RUN_OPEN_ORDERS: Dict[str, Any] = {}
|
2017-11-05 14:21:16 +00:00
|
|
|
|
2017-05-12 17:11:56 +00:00
|
|
|
|
2017-09-08 13:51:00 +00:00
|
|
|
def init(config: dict) -> None:
|
|
|
|
"""
|
|
|
|
Initializes this module with the given config,
|
|
|
|
it does basic validation whether the specified
|
|
|
|
exchange and pairs are valid.
|
|
|
|
:param config: config to use
|
|
|
|
:return: None
|
|
|
|
"""
|
2017-10-31 23:12:18 +00:00
|
|
|
global _CONF, _API
|
2017-09-08 13:51:00 +00:00
|
|
|
|
2017-09-08 21:10:22 +00:00
|
|
|
_CONF.update(config)
|
2017-09-08 13:51:00 +00:00
|
|
|
|
|
|
|
if config['dry_run']:
|
|
|
|
logger.info('Instance is running with dry_run enabled')
|
|
|
|
|
2017-10-06 10:22:04 +00:00
|
|
|
exchange_config = config['exchange']
|
|
|
|
|
|
|
|
# Find matching class for the given exchange name
|
2017-10-07 15:38:33 +00:00
|
|
|
name = exchange_config['name']
|
2018-01-31 14:47:08 +00:00
|
|
|
|
|
|
|
# TODO add check for a list of supported exchanges
|
|
|
|
|
2018-02-03 16:15:40 +00:00
|
|
|
if name not in ccxt.exchanges:
|
|
|
|
raise OperationalException('Exchange {} is not supported'.format(name))
|
|
|
|
|
2017-10-07 15:38:33 +00:00
|
|
|
try:
|
2018-01-31 14:47:08 +00:00
|
|
|
_API = getattr(ccxt, name.lower())({
|
|
|
|
'apiKey': exchange_config.get('key'),
|
|
|
|
'secret': exchange_config.get('secret'),
|
|
|
|
})
|
2017-10-07 15:38:33 +00:00
|
|
|
except KeyError:
|
2017-11-20 21:15:19 +00:00
|
|
|
raise OperationalException('Exchange {} is not supported'.format(name))
|
2017-10-06 10:22:04 +00:00
|
|
|
|
2018-01-31 14:47:08 +00:00
|
|
|
# we need load api markets
|
|
|
|
_API.load_markets()
|
2018-01-31 15:29:07 +00:00
|
|
|
|
2017-09-08 13:51:00 +00:00
|
|
|
# Check if all pairs are available
|
2017-10-06 10:22:04 +00:00
|
|
|
validate_pairs(config['exchange']['pair_whitelist'])
|
2017-10-01 21:28:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
def validate_pairs(pairs: List[str]) -> None:
|
|
|
|
"""
|
|
|
|
Checks if all given pairs are tradable on the current exchange.
|
2017-11-20 21:15:19 +00:00
|
|
|
Raises OperationalException if one pair is not available.
|
2017-10-01 21:28:09 +00:00
|
|
|
:param pairs: list of pairs
|
|
|
|
:return: None
|
|
|
|
"""
|
2018-02-01 20:07:46 +00:00
|
|
|
|
2017-11-18 21:22:45 +00:00
|
|
|
try:
|
2018-02-03 20:28:27 +00:00
|
|
|
markets = _API.load_markets()
|
|
|
|
except ccxt.BaseError as e:
|
2017-11-18 21:22:45 +00:00
|
|
|
logger.warning('Unable to validate pairs (assuming they are correct). Reason: %s', e)
|
|
|
|
return
|
|
|
|
|
2017-11-09 20:47:47 +00:00
|
|
|
stake_cur = _CONF['stake_currency']
|
2017-10-01 21:28:09 +00:00
|
|
|
for pair in pairs:
|
2018-02-01 20:07:46 +00:00
|
|
|
# Note: ccxt has BaseCurrency/QuoteCurrency format for pairs
|
2018-02-03 16:15:40 +00:00
|
|
|
# pair = pair.replace('_', '/')
|
2018-01-31 15:29:07 +00:00
|
|
|
|
2018-02-01 20:07:46 +00:00
|
|
|
# TODO: add a support for having coins in BTC/USDT format
|
2018-01-31 15:29:07 +00:00
|
|
|
if not pair.endswith(stake_cur):
|
2017-11-20 21:15:19 +00:00
|
|
|
raise OperationalException(
|
2017-11-09 20:47:47 +00:00
|
|
|
'Pair {} not compatible with stake_currency: {}'.format(pair, stake_cur)
|
|
|
|
)
|
2017-09-08 13:51:00 +00:00
|
|
|
if pair not in markets:
|
2017-11-20 21:15:19 +00:00
|
|
|
raise OperationalException(
|
2018-02-03 20:28:27 +00:00
|
|
|
'Pair {} is not available at {}'.format(pair, _API.id.lower()))
|
2017-09-08 13:51:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def buy(pair: str, rate: float, amount: float) -> str:
|
2017-09-08 21:10:22 +00:00
|
|
|
if _CONF['dry_run']:
|
2017-11-05 14:21:16 +00:00
|
|
|
global _DRY_RUN_OPEN_ORDERS
|
2017-11-18 07:52:28 +00:00
|
|
|
order_id = 'dry_run_buy_{}'.format(randint(0, 10**6))
|
2017-11-05 14:21:16 +00:00
|
|
|
_DRY_RUN_OPEN_ORDERS[order_id] = {
|
|
|
|
'pair': pair,
|
|
|
|
'rate': rate,
|
|
|
|
'amount': amount,
|
|
|
|
'type': 'LIMIT_BUY',
|
|
|
|
'remaining': 0.0,
|
|
|
|
'opened': arrow.utcnow().datetime,
|
|
|
|
'closed': arrow.utcnow().datetime,
|
|
|
|
}
|
|
|
|
return order_id
|
2017-10-06 10:22:04 +00:00
|
|
|
|
2017-10-31 23:12:18 +00:00
|
|
|
return _API.buy(pair, rate, amount)
|
2017-09-08 13:51:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def sell(pair: str, rate: float, amount: float) -> str:
|
2017-09-08 21:10:22 +00:00
|
|
|
if _CONF['dry_run']:
|
2017-11-05 14:21:16 +00:00
|
|
|
global _DRY_RUN_OPEN_ORDERS
|
2017-11-18 07:52:28 +00:00
|
|
|
order_id = 'dry_run_sell_{}'.format(randint(0, 10**6))
|
2017-11-05 14:21:16 +00:00
|
|
|
_DRY_RUN_OPEN_ORDERS[order_id] = {
|
|
|
|
'pair': pair,
|
|
|
|
'rate': rate,
|
|
|
|
'amount': amount,
|
|
|
|
'type': 'LIMIT_SELL',
|
|
|
|
'remaining': 0.0,
|
|
|
|
'opened': arrow.utcnow().datetime,
|
|
|
|
'closed': arrow.utcnow().datetime,
|
|
|
|
}
|
|
|
|
return order_id
|
2017-10-06 10:22:04 +00:00
|
|
|
|
2017-10-31 23:12:18 +00:00
|
|
|
return _API.sell(pair, rate, amount)
|
2017-09-08 13:51:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_balance(currency: str) -> float:
|
2017-09-08 21:10:22 +00:00
|
|
|
if _CONF['dry_run']:
|
2017-09-08 13:51:00 +00:00
|
|
|
return 999.9
|
2017-10-06 10:22:04 +00:00
|
|
|
|
2018-02-03 20:28:27 +00:00
|
|
|
return _API.fetch_balance()[currency]['free']
|
2017-09-08 13:51:00 +00:00
|
|
|
|
2017-10-30 23:36:35 +00:00
|
|
|
|
2018-02-04 10:30:54 +00:00
|
|
|
def get_balances() -> dict:
|
2017-11-01 00:25:48 +00:00
|
|
|
if _CONF['dry_run']:
|
2018-02-04 10:30:54 +00:00
|
|
|
return {}
|
2017-11-01 00:25:48 +00:00
|
|
|
|
2018-02-04 10:30:54 +00:00
|
|
|
balances = _API.fetch_balance()
|
|
|
|
# Remove additional info from ccxt results
|
|
|
|
balances.pop("info", None)
|
|
|
|
balances.pop("free", None)
|
|
|
|
balances.pop("total", None)
|
|
|
|
balances.pop("used", None)
|
|
|
|
|
|
|
|
return balances
|
2017-09-08 13:51:00 +00:00
|
|
|
|
2017-10-30 23:36:35 +00:00
|
|
|
|
2018-01-02 09:56:42 +00:00
|
|
|
def get_ticker(pair: str, refresh: Optional[bool] = True) -> dict:
|
2018-02-03 20:28:27 +00:00
|
|
|
# TODO: add caching
|
|
|
|
return _API.fetch_ticker(pair)
|
2017-10-06 10:22:04 +00:00
|
|
|
|
|
|
|
|
2018-01-01 18:32:58 +00:00
|
|
|
@cached(TTLCache(maxsize=100, ttl=30))
|
2018-01-15 21:27:12 +00:00
|
|
|
def get_ticker_history(pair: str, tick_interval) -> List[Dict]:
|
2018-02-03 20:28:27 +00:00
|
|
|
# TODO: check if exchange supports fetch_ohlcv
|
|
|
|
return _API.fetch_ohlcv(pair, timeframe=tick_interval)
|
2017-09-08 13:51:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def cancel_order(order_id: str) -> None:
|
2017-09-08 21:10:22 +00:00
|
|
|
if _CONF['dry_run']:
|
2017-10-06 10:22:04 +00:00
|
|
|
return
|
|
|
|
|
2017-10-31 23:12:18 +00:00
|
|
|
return _API.cancel_order(order_id)
|
2017-09-08 13:51:00 +00:00
|
|
|
|
|
|
|
|
2017-10-31 23:12:18 +00:00
|
|
|
def get_order(order_id: str) -> Dict:
|
2017-09-08 21:10:22 +00:00
|
|
|
if _CONF['dry_run']:
|
2017-11-05 15:13:20 +00:00
|
|
|
order = _DRY_RUN_OPEN_ORDERS[order_id]
|
2017-11-05 14:21:16 +00:00
|
|
|
order.update({
|
|
|
|
'id': order_id
|
|
|
|
})
|
|
|
|
return order
|
2017-10-31 23:12:18 +00:00
|
|
|
|
|
|
|
return _API.get_order(order_id)
|
2017-09-08 13:51:00 +00:00
|
|
|
|
|
|
|
|
2018-02-03 22:16:57 +00:00
|
|
|
# TODO: reimplement, not part of ccxt
|
2017-09-08 13:51:00 +00:00
|
|
|
def get_pair_detail_url(pair: str) -> str:
|
2018-02-03 22:16:57 +00:00
|
|
|
return ""
|
2017-09-08 13:51:00 +00:00
|
|
|
|
|
|
|
|
2018-02-03 20:39:47 +00:00
|
|
|
def get_markets() -> List[dict]:
|
|
|
|
return _API.fetch_markets()
|
2017-10-31 23:12:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_name() -> str:
|
|
|
|
return _API.name
|
|
|
|
|
|
|
|
|
|
|
|
def get_fee() -> float:
|
2018-02-03 20:28:27 +00:00
|
|
|
return _API.calculate_fee('ETH/BTC', '', '', 1, 1)['rate']
|