Skip to content

Commit

Permalink
Implement get_balances which uses open_orders
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Sep 11, 2019
1 parent c01953d commit 3b4bbe7
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions freqtrade/exchange/kraken.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,42 @@
import logging
from typing import Dict

import ccxt

from freqtrade import OperationalException, TemporaryError
from freqtrade.exchange import Exchange
from freqtrade.exchange.exchange import retrier

logger = logging.getLogger(__name__)


class Kraken(Exchange):

_params: Dict = {"trading_agreement": "agree"}

@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()
order_list = [[x["symbol"].split("/")[0 if x["side"] == "sell" else 1],
x["remaining"], x["side"], x["amount"], ] for x in orders]
for bal in balances:
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
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

0 comments on commit 3b4bbe7

Please sign in to comment.