stable/freqtrade/exchange/__init__.py

250 lines
6.7 KiB
Python
Raw Normal View History

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
import ccxt
2017-11-05 14:21:16 +00:00
from random import randint
from typing import List, Dict, Any, Optional
from cachetools import cached, TTLCache
from datetime import datetime
2017-09-01 19:11:46 +00:00
2017-10-06 10:22:04 +00:00
import arrow
import requests
2017-10-06 10:22:04 +00:00
from freqtrade import OperationalException, NetworkException
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
_API = None
2017-10-06 10:22:04 +00:00
_CONF: dict = {}
API_RETRY_COUNT = 4
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
def retrier(f):
def wrapper(*args, **kwargs):
count = kwargs.pop('count', API_RETRY_COUNT)
try:
return f(*args, **kwargs)
# TODO dont be a gotta-catch-them-all pokemon collector
except Exception as ex:
logger.warning('%s returned exception: "%s"', f, ex)
if count > 0:
count -= 1
kwargs.update({'count': count})
logger.warning('retrying %s still for %s times', f, count)
return wrapper(*args, **kwargs)
else:
raise OperationalException('Giving up retrying: %s', f)
return wrapper
def _get_market_url(exchange):
"get market url for exchange"
# TODO: PR to ccxt
base = exchange.urls.get('www')
market = ""
if 'bittrex' in get_name():
market = base + '/Market/Index?MarketName={}'
if 'binance' in get_name():
market = base + '/trade.html?symbol={}'
return market
2017-05-12 17:11:56 +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
"""
global _CONF, _API
2017-09-08 21:10:22 +00:00
_CONF.update(config)
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-03-30 20:14:35 +00:00
# Init the exchange if the exchange name passed is supported
2017-10-07 15:38:33 +00:00
try:
_API = getattr(ccxt, name.lower())({
'apiKey': exchange_config.get('key'),
'secret': exchange_config.get('secret'),
})
logger.info('Using Exchange %s', name.capitalize())
2018-03-30 20:14:35 +00:00
except (KeyError, AttributeError):
raise OperationalException('Exchange {} is not supported'.format(name))
2017-10-06 10:22:04 +00:00
# we need load api markets
_API.load_markets()
# 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.
Raises OperationalException if one pair is not available.
2017-10-01 21:28:09 +00:00
:param pairs: list of pairs
:return: None
"""
if not _API.markets:
_API.load_markets()
2018-03-30 20:52:25 +00:00
markets = _API.markets
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:
# Note: ccxt has BaseCurrency/QuoteCurrency format for pairs
pair = pair.replace('_', '/')
# TODO: add a support for having coins in BTC/USDT format
if not pair.endswith(stake_cur):
raise OperationalException(
2017-11-09 20:47:47 +00:00
'Pair {} not compatible with stake_currency: {}'.format(pair, stake_cur)
)
if pair not in markets:
raise OperationalException(
'Pair {} is not available at {}'.format(pair, _API.name.lower()))
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
return _API.buy(pair, rate, amount)
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
return _API.sell(pair, rate, amount)
def get_balance(currency: str) -> float:
2017-09-08 21:10:22 +00:00
if _CONF['dry_run']:
return 999.9
2017-10-06 10:22:04 +00:00
return _API.fetch_balance()[currency]
2017-10-30 23:36:35 +00:00
def get_balances():
2017-11-01 00:25:48 +00:00
if _CONF['dry_run']:
return []
return _API.fetch_balance()
2017-10-30 23:36:35 +00:00
# @cached(TTLCache(maxsize=100, ttl=30))
@retrier
2018-01-02 09:56:42 +00:00
def get_ticker(pair: str, refresh: Optional[bool] = True) -> dict:
return _API.fetch_ticker(pair)
2017-10-06 10:22:04 +00:00
# @cached(TTLCache(maxsize=100, ttl=30))
@retrier
def get_ticker_history(pair: str, tick_interval) -> List[List]:
# TODO: tickers need to be in format 1m,5m
# fetch_ohlcv returns an [[datetime,o,h,l,c,v]]
if 'fetchOHLCV' not in _API.has or not _API.has['fetchOHLCV']:
logger.warning('Exhange %s does not support fetching historical candlestick data.',
_API.name)
return []
try:
ohlcv = _API.fetch_ohlcv(pair, timeframe=str(tick_interval)+"m")
return ohlcv
except IndexError as e:
logger.warning('Empty ticker history. Msg %s', str(e))
except ccxt.NetworkError as e:
logger.warning('Could not load ticker history due to networking error. Message: %s', str(e))
except ccxt.BaseError as e:
logger.warning('Could not fetch ticker data. Msg: %s', str(e))
return []
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
return _API.cancel_order(order_id)
def get_order(order_id: str) -> Dict:
2017-09-08 21:10:22 +00:00
if _CONF['dry_run']:
order = _DRY_RUN_OPEN_ORDERS[order_id]
2017-11-05 14:21:16 +00:00
order.update({
'id': order_id
})
return order
return _API.get_order(order_id)
def get_pair_detail_url(pair: str) -> str:
return _get_market_url(_API).format(
_API.markets[pair]['id']
)
def get_markets() -> List[str]:
return _API.get_markets()
2017-11-11 18:20:16 +00:00
def get_market_summaries() -> List[Dict]:
return _API.fetch_tickers()
2017-11-11 18:20:16 +00:00
def get_name() -> str:
2018-03-26 06:23:42 +00:00
return _API.__class__.__name__.capitalize()
def get_fee_maker() -> float:
return _API.fees['trading']['maker']
def get_fee_taker() -> float:
return _API.fees['trading']['taker']
def get_fee() -> float:
return get_fee_taker()
def get_wallet_health() -> List[Dict]:
if not _API.markets:
_API.load_markets()
return _API.markets