2015-09-05 06:47:01 -07:00
|
|
|
from datetime import datetime
|
2015-09-04 06:36:52 -07:00
|
|
|
import inspect
|
2015-04-27 21:28:20 -07:00
|
|
|
import requests
|
2015-09-04 06:36:52 -07:00
|
|
|
import sys
|
2015-09-05 06:47:01 -07:00
|
|
|
from threading import Thread
|
2014-03-31 18:52:31 -07:00
|
|
|
import time
|
2015-09-04 22:05:37 -07:00
|
|
|
import traceback
|
2015-10-15 14:56:23 -07:00
|
|
|
import csv
|
2013-09-23 07:14:28 -07:00
|
|
|
from decimal import Decimal
|
2015-02-27 14:10:45 -08:00
|
|
|
|
2015-05-31 19:26:22 -07:00
|
|
|
from electrum.bitcoin import COIN
|
2014-08-31 02:42:40 -07:00
|
|
|
from electrum.plugins import BasePlugin, hook
|
2013-09-23 07:14:28 -07:00
|
|
|
from electrum.i18n import _
|
2016-01-29 08:56:13 -08:00
|
|
|
from electrum.util import PrintError, ThreadJob
|
2015-09-04 22:05:37 -07:00
|
|
|
from electrum.util import format_satoshis
|
2015-11-23 05:15:25 -08:00
|
|
|
|
2013-09-23 07:14:28 -07:00
|
|
|
|
2015-09-06 02:06:56 -07:00
|
|
|
# See https://en.wikipedia.org/wiki/ISO_4217
|
|
|
|
CCY_PRECISIONS = {'BHD': 3, 'BIF': 0, 'BYR': 0, 'CLF': 4, 'CLP': 0,
|
|
|
|
'CVE': 0, 'DJF': 0, 'GNF': 0, 'IQD': 3, 'ISK': 0,
|
|
|
|
'JOD': 3, 'JPY': 0, 'KMF': 0, 'KRW': 0, 'KWD': 3,
|
|
|
|
'LYD': 3, 'MGA': 1, 'MRO': 1, 'OMR': 3, 'PYG': 0,
|
|
|
|
'RWF': 0, 'TND': 3, 'UGX': 0, 'UYI': 0, 'VND': 0,
|
2015-11-24 07:16:06 -08:00
|
|
|
'VUV': 0, 'XAF': 0, 'XAU': 4, 'XOF': 0, 'XPF': 0}
|
2015-09-06 02:06:56 -07:00
|
|
|
|
2015-09-06 05:40:00 -07:00
|
|
|
class ExchangeBase(PrintError):
|
2015-11-21 06:24:38 -08:00
|
|
|
|
|
|
|
def __init__(self, on_quotes, on_history):
|
2015-09-05 05:47:35 -07:00
|
|
|
self.history = {}
|
|
|
|
self.quotes = {}
|
2015-11-21 06:24:38 -08:00
|
|
|
self.on_quotes = on_quotes
|
|
|
|
self.on_history = on_history
|
2015-09-04 22:05:37 -07:00
|
|
|
|
2015-09-06 08:01:26 -07:00
|
|
|
def protocol(self):
|
|
|
|
return "https"
|
|
|
|
|
2015-09-04 06:36:52 -07:00
|
|
|
def get_json(self, site, get_string):
|
2015-09-06 08:01:26 -07:00
|
|
|
url = "".join([self.protocol(), '://', site, get_string])
|
|
|
|
response = requests.request('GET', url,
|
2015-09-04 06:36:52 -07:00
|
|
|
headers={'User-Agent' : 'Electrum'})
|
|
|
|
return response.json()
|
|
|
|
|
2015-10-15 14:56:23 -07:00
|
|
|
def get_csv(self, site, get_string):
|
|
|
|
url = "".join([self.protocol(), '://', site, get_string])
|
|
|
|
response = requests.request('GET', url,
|
|
|
|
headers={'User-Agent' : 'Electrum'})
|
|
|
|
reader = csv.DictReader(response.content.split('\n'))
|
|
|
|
return list(reader)
|
|
|
|
|
2015-09-04 09:24:16 -07:00
|
|
|
def name(self):
|
2015-09-04 06:36:52 -07:00
|
|
|
return self.__class__.__name__
|
|
|
|
|
2015-09-06 08:23:59 -07:00
|
|
|
def update_safe(self, ccy):
|
2015-09-06 08:01:26 -07:00
|
|
|
try:
|
2015-09-06 08:23:59 -07:00
|
|
|
self.print_error("getting fx quotes for", ccy)
|
2015-09-06 08:01:26 -07:00
|
|
|
self.quotes = self.get_rates(ccy)
|
|
|
|
self.print_error("received fx quotes")
|
2016-01-23 18:16:05 -08:00
|
|
|
except BaseException as e:
|
2015-09-06 08:23:59 -07:00
|
|
|
self.print_error("failed fx quotes:", e)
|
2016-01-25 10:30:16 -08:00
|
|
|
self.on_quotes()
|
2015-09-04 06:36:52 -07:00
|
|
|
|
2015-09-06 08:23:59 -07:00
|
|
|
def update(self, ccy):
|
|
|
|
t = Thread(target=self.update_safe, args=(ccy,))
|
|
|
|
t.setDaemon(True)
|
|
|
|
t.start()
|
2015-09-04 06:36:52 -07:00
|
|
|
|
2015-09-06 08:23:59 -07:00
|
|
|
def get_historical_rates_safe(self, ccy):
|
|
|
|
try:
|
|
|
|
self.print_error("requesting fx history for", ccy)
|
|
|
|
self.history[ccy] = self.historical_rates(ccy)
|
|
|
|
self.print_error("received fx history for", ccy)
|
2015-11-21 06:24:38 -08:00
|
|
|
self.on_history()
|
2016-01-23 18:16:05 -08:00
|
|
|
except BaseException as e:
|
2015-09-06 08:23:59 -07:00
|
|
|
self.print_error("failed fx history:", e)
|
2015-09-04 22:05:37 -07:00
|
|
|
|
|
|
|
def get_historical_rates(self, ccy):
|
|
|
|
result = self.history.get(ccy)
|
2015-09-05 06:16:24 -07:00
|
|
|
if not result and ccy in self.history_ccys():
|
2015-09-06 08:23:59 -07:00
|
|
|
t = Thread(target=self.get_historical_rates_safe, args=(ccy,))
|
2015-09-04 22:05:37 -07:00
|
|
|
t.setDaemon(True)
|
|
|
|
t.start()
|
|
|
|
return result
|
|
|
|
|
2015-09-06 08:23:59 -07:00
|
|
|
def history_ccys(self):
|
|
|
|
return []
|
|
|
|
|
2015-09-04 22:05:37 -07:00
|
|
|
def historical_rate(self, ccy, d_t):
|
2015-09-05 06:47:01 -07:00
|
|
|
return self.history.get(ccy, {}).get(d_t.strftime('%Y-%m-%d'))
|
2015-09-04 22:05:37 -07:00
|
|
|
|
2015-09-04 06:36:52 -07:00
|
|
|
|
|
|
|
class BitcoinAverage(ExchangeBase):
|
2015-10-15 13:10:00 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('api.bitcoinaverage.com', '/ticker/global/all')
|
2015-09-06 08:01:26 -07:00
|
|
|
return dict([(r, Decimal(json[r]['last']))
|
2015-09-04 06:36:52 -07:00
|
|
|
for r in json if r != 'timestamp'])
|
|
|
|
|
2015-10-15 14:56:23 -07:00
|
|
|
def history_ccys(self):
|
|
|
|
return ['AUD', 'BRL', 'CAD', 'CHF', 'CNY', 'EUR', 'GBP', 'IDR', 'ILS',
|
|
|
|
'MXN', 'NOK', 'NZD', 'PLN', 'RON', 'RUB', 'SEK', 'SGD', 'USD',
|
|
|
|
'ZAR']
|
|
|
|
|
|
|
|
def historical_rates(self, ccy):
|
|
|
|
history = self.get_csv('api.bitcoinaverage.com',
|
|
|
|
"/history/%s/per_day_all_time_history.csv" % ccy)
|
|
|
|
return dict([(h['datetime'][:10], h['average'])
|
|
|
|
for h in history])
|
|
|
|
|
2015-09-04 06:36:52 -07:00
|
|
|
class BitcoinVenezuela(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('api.bitcoinvenezuela.com', '/')
|
2015-10-24 07:23:43 -07:00
|
|
|
rates = [(r, json['BTC'][r]) for r in json['BTC']
|
|
|
|
if json['BTC'][r] is not None] # Giving NULL for LTC
|
|
|
|
return dict(rates)
|
2015-09-04 06:36:52 -07:00
|
|
|
|
2015-09-06 08:01:26 -07:00
|
|
|
def protocol(self):
|
|
|
|
return "http"
|
|
|
|
|
2015-09-04 06:36:52 -07:00
|
|
|
def history_ccys(self):
|
2015-09-04 22:05:37 -07:00
|
|
|
return ['ARS', 'EUR', 'USD', 'VEF']
|
2015-09-04 06:36:52 -07:00
|
|
|
|
2015-09-04 22:05:37 -07:00
|
|
|
def historical_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
return self.get_json('api.bitcoinvenezuela.com',
|
|
|
|
"/historical/index.php?coin=BTC")[ccy +'_BTC']
|
|
|
|
|
|
|
|
class BTCParalelo(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('btcparalelo.com', '/api/price')
|
|
|
|
return {'VEF': Decimal(json['price'])}
|
|
|
|
|
2015-09-06 08:01:26 -07:00
|
|
|
def protocol(self):
|
2015-11-24 01:35:25 -08:00
|
|
|
return "http"
|
|
|
|
|
|
|
|
class Bitso(ExchangeBase):
|
|
|
|
def get_rates(self, ccy):
|
|
|
|
json = self.get_json('api.bitso.com', '/v2/ticker')
|
|
|
|
return {'MXN': Decimal(json['last'])}
|
|
|
|
|
|
|
|
def protocol(self):
|
2015-09-06 08:01:26 -07:00
|
|
|
return "http"
|
|
|
|
|
2015-09-04 06:36:52 -07:00
|
|
|
class Bitcurex(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('pln.bitcurex.com', '/data/ticker.json')
|
|
|
|
pln_price = json['last']
|
|
|
|
return {'PLN': Decimal(pln_price)}
|
|
|
|
|
|
|
|
class Bitmarket(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('www.bitmarket.pl', '/json/BTCPLN/ticker.json')
|
|
|
|
return {'PLN': Decimal(json['last'])}
|
|
|
|
|
|
|
|
class BitPay(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('bitpay.com', '/api/rates')
|
|
|
|
return dict([(r['code'], Decimal(r['rate'])) for r in json])
|
|
|
|
|
2015-10-15 13:10:15 -07:00
|
|
|
class BitStamp(ExchangeBase):
|
|
|
|
def get_rates(self, ccy):
|
|
|
|
json = self.get_json('www.bitstamp.net', '/api/ticker/')
|
|
|
|
return {'USD': Decimal(json['last'])}
|
|
|
|
|
2015-09-06 05:40:00 -07:00
|
|
|
class BlockchainInfo(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('blockchain.info', '/ticker')
|
|
|
|
return dict([(r, Decimal(json[r]['15m'])) for r in json])
|
|
|
|
|
2015-09-06 05:40:00 -07:00
|
|
|
def name(self):
|
|
|
|
return "Blockchain"
|
|
|
|
|
2015-09-04 06:36:52 -07:00
|
|
|
class BTCChina(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('data.btcchina.com', '/data/ticker')
|
|
|
|
return {'CNY': Decimal(json['ticker']['last'])}
|
|
|
|
|
|
|
|
class CaVirtEx(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('www.cavirtex.com', '/api/CAD/ticker.json')
|
|
|
|
return {'CAD': Decimal(json['last'])}
|
|
|
|
|
|
|
|
class Coinbase(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('coinbase.com',
|
|
|
|
'/api/v1/currencies/exchange_rates')
|
|
|
|
return dict([(r[7:].upper(), Decimal(json[r]))
|
|
|
|
for r in json if r.startswith('btc_to_')])
|
|
|
|
|
|
|
|
class CoinDesk(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
dicts = self.get_json('api.coindesk.com',
|
|
|
|
'/v1/bpi/supported-currencies.json')
|
|
|
|
json = self.get_json('api.coindesk.com',
|
|
|
|
'/v1/bpi/currentprice/%s.json' % ccy)
|
|
|
|
ccys = [d['currency'] for d in dicts]
|
|
|
|
result = dict.fromkeys(ccys)
|
2015-09-05 21:42:40 -07:00
|
|
|
result[ccy] = Decimal(json['bpi'][ccy]['rate_float'])
|
2015-09-04 06:36:52 -07:00
|
|
|
return result
|
|
|
|
|
2015-09-04 22:05:37 -07:00
|
|
|
def history_starts(self):
|
|
|
|
return { 'USD': '2012-11-30' }
|
|
|
|
|
2015-09-04 06:36:52 -07:00
|
|
|
def history_ccys(self):
|
2015-09-04 22:05:37 -07:00
|
|
|
return self.history_starts().keys()
|
2015-09-04 06:36:52 -07:00
|
|
|
|
2015-09-04 22:05:37 -07:00
|
|
|
def historical_rates(self, ccy):
|
|
|
|
start = self.history_starts()[ccy]
|
|
|
|
end = datetime.today().strftime('%Y-%m-%d')
|
|
|
|
# Note ?currency and ?index don't work as documented. Sigh.
|
|
|
|
query = ('/v1/bpi/historical/close.json?start=%s&end=%s'
|
|
|
|
% (start, end))
|
|
|
|
json = self.get_json('api.coindesk.com', query)
|
2015-09-06 08:23:59 -07:00
|
|
|
return json['bpi']
|
2016-01-23 18:16:05 -08:00
|
|
|
|
2015-12-03 02:57:32 -08:00
|
|
|
class Coinsecure(ExchangeBase):
|
|
|
|
def get_rates(self, ccy):
|
2015-12-10 02:21:19 -08:00
|
|
|
json = self.get_json('api.coinsecure.in', '/v0/noauth/newticker')
|
|
|
|
return {'INR': Decimal(json['lastprice'] / 100.0 )}
|
|
|
|
|
|
|
|
class Unocoin(ExchangeBase):
|
|
|
|
def get_rates(self, ccy):
|
|
|
|
json = self.get_json('www.unocoin.com', 'trade?buy')
|
|
|
|
return {'INR': Decimal(json)}
|
|
|
|
|
2015-09-04 06:36:52 -07:00
|
|
|
class itBit(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
ccys = ['USD', 'EUR', 'SGD']
|
|
|
|
json = self.get_json('api.itbit.com', '/v1/markets/XBT%s/ticker' % ccy)
|
|
|
|
result = dict.fromkeys(ccys)
|
2015-09-06 15:38:30 -07:00
|
|
|
if ccy in ccys:
|
|
|
|
result[ccy] = Decimal(json['lastPrice'])
|
2015-09-04 06:36:52 -07:00
|
|
|
return result
|
|
|
|
|
2016-01-12 16:03:30 -08:00
|
|
|
class Kraken(ExchangeBase):
|
|
|
|
def get_rates(self, ccy):
|
|
|
|
ccys = ['EUR', 'USD', 'CAD', 'GBP', 'JPY']
|
|
|
|
pairs = ['XBT%s' % c for c in ccys]
|
|
|
|
json = self.get_json('api.kraken.com',
|
|
|
|
'/0/public/Ticker?pair=%s' % ','.join(pairs))
|
|
|
|
return dict((k[-3:], Decimal(float(v['c'][0])))
|
|
|
|
for k, v in json['result'].items())
|
|
|
|
|
2015-09-04 06:36:52 -07:00
|
|
|
class LocalBitcoins(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('localbitcoins.com',
|
|
|
|
'/bitcoinaverage/ticker-all-currencies/')
|
|
|
|
return dict([(r, Decimal(json[r]['rates']['last'])) for r in json])
|
|
|
|
|
|
|
|
class Winkdex(ExchangeBase):
|
2015-09-04 22:05:37 -07:00
|
|
|
def get_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('winkdex.com', '/api/v0/price')
|
2015-09-04 09:24:16 -07:00
|
|
|
return {'USD': Decimal(json['price'] / 100.0)}
|
2015-09-04 06:36:52 -07:00
|
|
|
|
|
|
|
def history_ccys(self):
|
|
|
|
return ['USD']
|
|
|
|
|
2015-09-04 22:05:37 -07:00
|
|
|
def historical_rates(self, ccy):
|
2015-09-04 06:36:52 -07:00
|
|
|
json = self.get_json('winkdex.com',
|
|
|
|
"/api/v0/series?start_time=1342915200")
|
2015-09-04 23:22:04 -07:00
|
|
|
history = json['series'][0]['results']
|
2015-09-06 08:23:59 -07:00
|
|
|
return dict([(h['timestamp'][:10], h['price'] / 100.0)
|
|
|
|
for h in history])
|
2013-09-23 07:14:28 -07:00
|
|
|
|
2016-01-15 08:57:48 -08:00
|
|
|
class MercadoBitcoin(ExchangeBase):
|
|
|
|
def get_rates(self,ccy):
|
|
|
|
json = self.get_json('mercadobitcoin.net',
|
|
|
|
"/api/ticker/ticker_bitcoin")
|
|
|
|
return {'BRL': Decimal(json['ticker']['last'])}
|
|
|
|
|
|
|
|
def history_ccys(self):
|
|
|
|
return ['BRL']
|
|
|
|
|
|
|
|
class Bitcointoyou(ExchangeBase):
|
|
|
|
def get_rates(self,ccy):
|
|
|
|
json = self.get_json('bitcointoyou.com',
|
|
|
|
"/API/ticker.aspx")
|
|
|
|
return {'BRL': Decimal(json['ticker']['last'])}
|
|
|
|
|
|
|
|
def history_ccys(self):
|
|
|
|
return ['BRL']
|
2014-03-04 06:27:39 -08:00
|
|
|
|
2016-01-29 10:58:40 -08:00
|
|
|
|
|
|
|
def dictinvert(d):
|
|
|
|
inv = {}
|
|
|
|
for k, vlist in d.iteritems():
|
|
|
|
for v in vlist:
|
|
|
|
keys = inv.setdefault(v, [])
|
|
|
|
keys.append(k)
|
|
|
|
return inv
|
|
|
|
|
|
|
|
def get_exchanges():
|
|
|
|
is_exchange = lambda obj: (inspect.isclass(obj)
|
|
|
|
and issubclass(obj, ExchangeBase)
|
|
|
|
and obj != ExchangeBase)
|
|
|
|
return dict(inspect.getmembers(sys.modules[__name__], is_exchange))
|
|
|
|
|
|
|
|
def get_exchanges_by_ccy():
|
|
|
|
"return only the exchanges that have history rates (which is hardcoded)"
|
|
|
|
d = {}
|
|
|
|
exchanges = get_exchanges()
|
|
|
|
for name, klass in exchanges.items():
|
|
|
|
exchange = klass(None, None)
|
|
|
|
d[name] = exchange.history_ccys()
|
|
|
|
return dictinvert(d)
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-11-23 10:38:48 -08:00
|
|
|
class FxPlugin(BasePlugin, ThreadJob):
|
2013-09-23 07:14:28 -07:00
|
|
|
|
2015-09-03 17:07:18 -07:00
|
|
|
def __init__(self, parent, config, name):
|
|
|
|
BasePlugin.__init__(self, parent, config, name)
|
2016-01-21 07:29:46 -08:00
|
|
|
self.ccy = self.get_currency()
|
2015-09-05 06:47:01 -07:00
|
|
|
self.history_used_spot = False
|
2015-09-05 05:47:35 -07:00
|
|
|
self.ccy_combo = None
|
2015-09-05 06:16:24 -07:00
|
|
|
self.hist_checkbox = None
|
2016-01-29 10:58:40 -08:00
|
|
|
self.exchanges = get_exchanges()
|
|
|
|
self.exchanges_by_ccy = get_exchanges_by_ccy()
|
2015-09-04 06:36:52 -07:00
|
|
|
self.set_exchange(self.config_exchange())
|
2015-09-05 00:33:06 -07:00
|
|
|
|
2015-09-06 02:06:56 -07:00
|
|
|
def ccy_amount_str(self, amount, commas):
|
|
|
|
prec = CCY_PRECISIONS.get(self.ccy, 2)
|
|
|
|
fmt_str = "{:%s.%df}" % ("," if commas else "", max(0, prec))
|
|
|
|
return fmt_str.format(round(amount, prec))
|
|
|
|
|
2015-09-05 01:18:09 -07:00
|
|
|
def thread_jobs(self):
|
|
|
|
return [self]
|
|
|
|
|
2015-09-05 00:33:06 -07:00
|
|
|
def run(self):
|
2015-12-03 02:18:10 -08:00
|
|
|
# This runs from the plugins thread which catches exceptions
|
2015-11-21 06:24:38 -08:00
|
|
|
if self.timeout <= time.time():
|
2015-09-05 00:33:06 -07:00
|
|
|
self.timeout = time.time() + 150
|
2015-09-05 21:42:40 -07:00
|
|
|
self.exchange.update(self.ccy)
|
2015-08-31 03:21:42 -07:00
|
|
|
|
2016-01-21 07:29:46 -08:00
|
|
|
def get_currency(self):
|
2015-09-05 06:16:24 -07:00
|
|
|
'''Use when dynamic fetching is needed'''
|
|
|
|
return self.config.get("currency", "EUR")
|
|
|
|
|
2015-09-04 06:36:52 -07:00
|
|
|
def config_exchange(self):
|
2016-01-19 03:37:40 -08:00
|
|
|
return self.config.get('use_exchange', 'BitcoinAverage')
|
2015-09-04 06:36:52 -07:00
|
|
|
|
2015-09-06 08:01:26 -07:00
|
|
|
def show_history(self):
|
2016-01-29 08:56:13 -08:00
|
|
|
return self.ccy in self.exchange.history_ccys()
|
2015-09-06 08:01:26 -07:00
|
|
|
|
2016-01-21 07:29:46 -08:00
|
|
|
def set_currency(self, ccy):
|
|
|
|
self.ccy = ccy
|
|
|
|
self.config.set_key('currency', ccy, True)
|
|
|
|
self.get_historical_rates() # Because self.ccy changes
|
2016-01-29 03:50:38 -08:00
|
|
|
self.on_quotes()
|
2016-01-21 07:29:46 -08:00
|
|
|
|
2015-09-04 06:36:52 -07:00
|
|
|
def set_exchange(self, name):
|
|
|
|
class_ = self.exchanges.get(name) or self.exchanges.values()[0]
|
|
|
|
name = class_.__name__
|
|
|
|
self.print_error("using exchange", name)
|
|
|
|
if self.config_exchange() != name:
|
|
|
|
self.config.set_key('use_exchange', name, True)
|
2015-11-21 06:24:38 -08:00
|
|
|
|
2015-11-23 10:38:48 -08:00
|
|
|
self.exchange = class_(self.on_quotes, self.on_history)
|
2015-09-05 05:47:35 -07:00
|
|
|
# A new exchange means new fx quotes, initially empty. Force
|
|
|
|
# a quote refresh
|
|
|
|
self.timeout = 0
|
|
|
|
self.get_historical_rates()
|
|
|
|
|
2015-11-23 10:38:48 -08:00
|
|
|
def on_quotes(self):
|
|
|
|
pass
|
2015-09-04 06:36:52 -07:00
|
|
|
|
2015-11-23 10:38:48 -08:00
|
|
|
def on_history(self):
|
|
|
|
pass
|
2015-11-21 06:24:38 -08:00
|
|
|
|
2015-12-05 09:14:17 -08:00
|
|
|
@hook
|
2015-11-23 05:15:25 -08:00
|
|
|
def exchange_rate(self):
|
|
|
|
'''Returns None, or the exchange rate as a Decimal'''
|
|
|
|
rate = self.exchange.quotes.get(self.ccy)
|
|
|
|
if rate:
|
|
|
|
return Decimal(rate)
|
|
|
|
|
2015-11-21 06:24:38 -08:00
|
|
|
@hook
|
2015-11-23 05:15:25 -08:00
|
|
|
def format_amount_and_units(self, btc_balance):
|
|
|
|
rate = self.exchange_rate()
|
2015-12-02 03:11:28 -08:00
|
|
|
return '' if rate is None else "%s %s" % (self.value_str(btc_balance, rate), self.ccy)
|
2015-11-23 05:15:25 -08:00
|
|
|
|
|
|
|
@hook
|
|
|
|
def get_fiat_status_text(self, btc_balance):
|
|
|
|
rate = self.exchange_rate()
|
|
|
|
return _(" (No FX rate available)") if rate is None else "1 BTC~%s %s" % (self.value_str(COIN, rate), self.ccy)
|
|
|
|
|
|
|
|
def get_historical_rates(self):
|
|
|
|
if self.show_history():
|
|
|
|
self.exchange.get_historical_rates(self.ccy)
|
|
|
|
|
|
|
|
def requires_settings(self):
|
|
|
|
return True
|
|
|
|
|
2016-02-12 06:21:03 -08:00
|
|
|
@hook
|
2015-11-23 05:15:25 -08:00
|
|
|
def value_str(self, satoshis, rate):
|
|
|
|
if satoshis is None: # Can happen with incomplete history
|
|
|
|
return _("Unknown")
|
|
|
|
if rate:
|
|
|
|
value = Decimal(satoshis) / COIN * Decimal(rate)
|
|
|
|
return "%s" % (self.ccy_amount_str(value, True))
|
|
|
|
return _("No data")
|
|
|
|
|
|
|
|
@hook
|
2015-12-15 03:29:48 -08:00
|
|
|
def history_rate(self, d_t):
|
2015-11-23 05:15:25 -08:00
|
|
|
rate = self.exchange.historical_rate(self.ccy, d_t)
|
|
|
|
# Frequently there is no rate for today, until tomorrow :)
|
|
|
|
# Use spot quotes in that case
|
|
|
|
if rate is None and (datetime.today().date() - d_t.date()).days <= 2:
|
|
|
|
rate = self.exchange.quotes.get(self.ccy)
|
|
|
|
self.history_used_spot = True
|
2015-12-15 03:29:48 -08:00
|
|
|
return rate
|
|
|
|
|
|
|
|
@hook
|
|
|
|
def historical_value_str(self, satoshis, d_t):
|
|
|
|
rate = self.history_rate(d_t)
|
2015-11-23 05:15:25 -08:00
|
|
|
return self.value_str(satoshis, rate)
|