2019-02-17 03:01:17 +00:00
|
|
|
""" Kraken exchange subclass """
|
|
|
|
import logging
|
2021-08-20 08:40:22 +00:00
|
|
|
from typing import Any, Dict, Optional
|
2019-02-17 03:01:17 +00:00
|
|
|
|
2019-09-11 04:58:10 +00:00
|
|
|
import ccxt
|
|
|
|
|
2020-09-28 17:39:41 +00:00
|
|
|
from freqtrade.exceptions import (DDosProtection, InsufficientFundsError, InvalidOrderException,
|
|
|
|
OperationalException, TemporaryError)
|
2019-02-17 03:01:17 +00:00
|
|
|
from freqtrade.exchange import Exchange
|
2020-05-18 12:20:51 +00:00
|
|
|
from freqtrade.exchange.common import retrier
|
2019-02-17 03:01:17 +00:00
|
|
|
|
2020-09-28 17:39:41 +00:00
|
|
|
|
2019-02-17 03:01:17 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class Kraken(Exchange):
|
|
|
|
|
2019-02-17 14:54:22 +00:00
|
|
|
_params: Dict = {"trading_agreement": "agree"}
|
2019-08-14 17:22:52 +00:00
|
|
|
_ft_has: Dict = {
|
2020-01-19 13:08:47 +00:00
|
|
|
"stoploss_on_exchange": True,
|
2020-12-20 10:44:50 +00:00
|
|
|
"ohlcv_candle_limit": 720,
|
2019-08-14 17:22:52 +00:00
|
|
|
"trades_pagination": "id",
|
|
|
|
"trades_pagination_arg": "since",
|
|
|
|
}
|
2019-09-11 04:58:10 +00:00
|
|
|
|
2020-06-02 18:29:48 +00:00
|
|
|
def market_is_tradable(self, market: Dict[str, Any]) -> bool:
|
|
|
|
"""
|
|
|
|
Check if the market symbol is tradable by Freqtrade.
|
|
|
|
Default checks + check if pair is darkpool pair.
|
|
|
|
"""
|
|
|
|
parent_check = super().market_is_tradable(market)
|
|
|
|
|
|
|
|
return (parent_check and
|
|
|
|
market.get('darkpool', False) is False)
|
|
|
|
|
2019-09-11 04:58:10 +00:00
|
|
|
@retrier
|
|
|
|
def get_balances(self) -> dict:
|
|
|
|
if self._config['dry_run']:
|
|
|
|
return {}
|
|
|
|
|
|
|
|
try:
|
|
|
|
balances = self._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)
|
|
|
|
|
|
|
|
orders = self._api.fetch_open_orders()
|
2019-09-12 05:03:52 +00:00
|
|
|
order_list = [(x["symbol"].split("/")[0 if x["side"] == "sell" else 1],
|
2020-12-29 19:06:37 +00:00
|
|
|
x["remaining"] if x["side"] == "sell" else x["remaining"] * x["price"],
|
2021-06-25 13:45:49 +00:00
|
|
|
# Don't remove the below comment, this can be important for debugging
|
2019-09-12 05:03:52 +00:00
|
|
|
# x["side"], x["amount"],
|
|
|
|
) for x in orders]
|
2019-09-11 04:58:10 +00:00
|
|
|
for bal in balances:
|
2021-05-05 04:47:26 +00:00
|
|
|
if not isinstance(balances[bal], dict):
|
|
|
|
continue
|
2019-09-11 04:58:10 +00:00
|
|
|
balances[bal]['used'] = sum(order[1] for order in order_list if order[0] == bal)
|
|
|
|
balances[bal]['free'] = balances[bal]['total'] - balances[bal]['used']
|
|
|
|
|
|
|
|
return balances
|
2020-06-28 09:17:06 +00:00
|
|
|
except ccxt.DDoSProtection as e:
|
|
|
|
raise DDosProtection(e) from e
|
2019-09-11 04:58:10 +00:00
|
|
|
except (ccxt.NetworkError, ccxt.ExchangeError) as e:
|
|
|
|
raise TemporaryError(
|
|
|
|
f'Could not get balance due to {e.__class__.__name__}. Message: {e}') from e
|
|
|
|
except ccxt.BaseError as e:
|
|
|
|
raise OperationalException(e) from e
|
2020-01-19 13:08:47 +00:00
|
|
|
|
2021-07-26 06:01:57 +00:00
|
|
|
def stoploss_adjust(self, stop_loss: float, order: Dict, side: str) -> bool:
|
2020-01-19 18:54:30 +00:00
|
|
|
"""
|
|
|
|
Verify stop_loss against stoploss-order value (limit or price)
|
|
|
|
Returns True if adjustment is necessary.
|
|
|
|
"""
|
2021-08-22 03:10:03 +00:00
|
|
|
return (order['type'] in ('stop-loss', 'stop-loss-limit') and (
|
|
|
|
(side == "sell" and stop_loss > float(order['price'])) or
|
|
|
|
(side == "buy" and stop_loss < float(order['price']))
|
|
|
|
))
|
2020-01-19 18:54:30 +00:00
|
|
|
|
2021-08-23 02:58:22 +00:00
|
|
|
@retrier(retries=0)
|
2021-07-26 06:01:57 +00:00
|
|
|
def stoploss(self, pair: str, amount: float,
|
|
|
|
stop_price: float, order_types: Dict, side: str) -> Dict:
|
2020-01-19 13:08:47 +00:00
|
|
|
"""
|
|
|
|
Creates a stoploss market order.
|
|
|
|
Stoploss market orders is the only stoploss type supported by kraken.
|
|
|
|
"""
|
2020-11-25 15:27:27 +00:00
|
|
|
params = self._params.copy()
|
2020-01-19 13:08:47 +00:00
|
|
|
|
2020-11-25 15:27:27 +00:00
|
|
|
if order_types.get('stoploss', 'market') == 'limit':
|
|
|
|
ordertype = "stop-loss-limit"
|
|
|
|
limit_price_pct = order_types.get('stoploss_on_exchange_limit_ratio', 0.99)
|
|
|
|
limit_rate = stop_price * limit_price_pct
|
|
|
|
params['price2'] = self.price_to_precision(pair, limit_rate)
|
|
|
|
else:
|
|
|
|
ordertype = "stop-loss"
|
2020-01-19 13:08:47 +00:00
|
|
|
|
|
|
|
stop_price = self.price_to_precision(pair, stop_price)
|
|
|
|
|
|
|
|
if self._config['dry_run']:
|
2021-04-10 11:50:56 +00:00
|
|
|
dry_order = self.create_dry_run_order(
|
2021-08-22 03:10:03 +00:00
|
|
|
pair, ordertype, side, amount, stop_price)
|
2020-01-19 13:08:47 +00:00
|
|
|
return dry_order
|
|
|
|
|
|
|
|
try:
|
|
|
|
amount = self.amount_to_precision(pair, amount)
|
|
|
|
|
2021-08-22 03:10:03 +00:00
|
|
|
order = self._api.create_order(symbol=pair, type=ordertype, side=side,
|
2020-01-19 13:08:47 +00:00
|
|
|
amount=amount, price=stop_price, params=params)
|
2021-06-10 18:09:25 +00:00
|
|
|
self._log_exchange_response('create_stoploss_order', order)
|
2020-01-19 13:08:47 +00:00
|
|
|
logger.info('stoploss order added for %s. '
|
|
|
|
'stop price: %s.', pair, stop_price)
|
|
|
|
return order
|
|
|
|
except ccxt.InsufficientFunds as e:
|
2020-08-14 07:57:13 +00:00
|
|
|
raise InsufficientFundsError(
|
2021-08-22 03:10:03 +00:00
|
|
|
f'Insufficient funds to create {ordertype} {side} order on market {pair}. '
|
2020-01-19 13:08:47 +00:00
|
|
|
f'Tried to create stoploss with amount {amount} at stoploss {stop_price}. '
|
|
|
|
f'Message: {e}') from e
|
|
|
|
except ccxt.InvalidOrder as e:
|
|
|
|
raise InvalidOrderException(
|
2021-08-22 03:10:03 +00:00
|
|
|
f'Could not create {ordertype} {side} order on market {pair}. '
|
2020-01-19 13:08:47 +00:00
|
|
|
f'Tried to create stoploss with amount {amount} at stoploss {stop_price}. '
|
|
|
|
f'Message: {e}') from e
|
2020-06-28 09:17:06 +00:00
|
|
|
except ccxt.DDoSProtection as e:
|
|
|
|
raise DDosProtection(e) from e
|
2020-01-19 13:08:47 +00:00
|
|
|
except (ccxt.NetworkError, ccxt.ExchangeError) as e:
|
|
|
|
raise TemporaryError(
|
2021-08-22 03:10:03 +00:00
|
|
|
f'Could not place {side} order due to {e.__class__.__name__}. Message: {e}') from e
|
2020-01-19 13:08:47 +00:00
|
|
|
except ccxt.BaseError as e:
|
|
|
|
raise OperationalException(e) from e
|
2021-08-20 08:40:22 +00:00
|
|
|
|
|
|
|
def fill_leverage_brackets(self):
|
|
|
|
"""
|
|
|
|
Assigns property _leverage_brackets to a dictionary of information about the leverage
|
|
|
|
allowed on each pair
|
|
|
|
"""
|
|
|
|
leverages = {}
|
2021-08-21 07:13:51 +00:00
|
|
|
try:
|
2021-09-05 01:58:42 +00:00
|
|
|
for pair, market in self.markets.items():
|
2021-08-21 07:13:51 +00:00
|
|
|
info = market['info']
|
|
|
|
leverage_buy = info['leverage_buy']
|
|
|
|
leverage_sell = info['leverage_sell']
|
|
|
|
if len(info['leverage_buy']) > 0 or len(info['leverage_sell']) > 0:
|
|
|
|
if leverage_buy != leverage_sell:
|
|
|
|
logger.warning(f"The buy leverage != the sell leverage for {pair}. Please"
|
|
|
|
"let freqtrade know because this has never happened before"
|
|
|
|
)
|
|
|
|
if max(leverage_buy) < max(leverage_sell):
|
|
|
|
leverages[pair] = leverage_buy
|
|
|
|
else:
|
|
|
|
leverages[pair] = leverage_sell
|
2021-08-20 08:40:22 +00:00
|
|
|
else:
|
2021-08-21 07:13:51 +00:00
|
|
|
leverages[pair] = leverage_buy
|
|
|
|
self._leverage_brackets = leverages
|
|
|
|
except ccxt.DDoSProtection as e:
|
|
|
|
raise DDosProtection(e) from e
|
|
|
|
except (ccxt.NetworkError, ccxt.ExchangeError) as e:
|
|
|
|
raise TemporaryError(f'Could not fetch leverage amounts due to'
|
|
|
|
f'{e.__class__.__name__}. Message: {e}') from e
|
|
|
|
except ccxt.BaseError as e:
|
|
|
|
raise OperationalException(e) from e
|
2021-08-20 08:40:22 +00:00
|
|
|
|
|
|
|
def get_max_leverage(self, pair: Optional[str], nominal_value: Optional[float]) -> float:
|
|
|
|
"""
|
|
|
|
Returns the maximum leverage that a pair can be traded at
|
|
|
|
:param pair: The base/quote currency pair being traded
|
|
|
|
:nominal_value: Here for super class, not needed on Kraken
|
|
|
|
"""
|
|
|
|
return float(max(self._leverage_brackets[pair]))
|
|
|
|
|
|
|
|
def set_leverage(self, pair, leverage):
|
|
|
|
"""
|
|
|
|
Kraken set's the leverage as an option it the order object, so it doesn't do
|
|
|
|
anything in this function
|
|
|
|
"""
|
|
|
|
return
|