2018-01-28 01:33:04 +00:00
|
|
|
"""
|
|
|
|
Module that define classes to convert Crypto-currency to FIAT
|
|
|
|
e.g BTC to USD
|
|
|
|
"""
|
|
|
|
|
2017-12-25 07:51:41 +00:00
|
|
|
import logging
|
|
|
|
import time
|
2018-05-30 20:09:03 +00:00
|
|
|
from typing import Dict, List
|
2018-03-17 21:44:47 +00:00
|
|
|
|
2018-07-04 07:31:35 +00:00
|
|
|
from coinmarketcap import Market
|
|
|
|
|
2018-06-03 11:47:36 +00:00
|
|
|
from freqtrade.constants import SUPPORTED_FIAT
|
2017-12-25 07:51:41 +00:00
|
|
|
|
2018-07-04 07:31:35 +00:00
|
|
|
|
2017-12-25 07:51:41 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2018-03-17 21:18:05 +00:00
|
|
|
class CryptoFiat(object):
|
2018-01-28 01:33:04 +00:00
|
|
|
"""
|
|
|
|
Object to describe what is the price of Crypto-currency in a FIAT
|
|
|
|
"""
|
2017-12-25 07:51:41 +00:00
|
|
|
# Constants
|
|
|
|
CACHE_DURATION = 6 * 60 * 60 # 6 hours
|
|
|
|
|
|
|
|
def __init__(self, crypto_symbol: str, fiat_symbol: str, price: float) -> None:
|
|
|
|
"""
|
|
|
|
Create an object that will contains the price for a crypto-currency in fiat
|
|
|
|
:param crypto_symbol: Crypto-currency you want to convert (e.g BTC)
|
|
|
|
:param fiat_symbol: FIAT currency you want to convert to (e.g USD)
|
|
|
|
:param price: Price in FIAT
|
|
|
|
"""
|
|
|
|
|
|
|
|
# Public attributes
|
|
|
|
self.crypto_symbol = None
|
|
|
|
self.fiat_symbol = None
|
|
|
|
self.price = 0.0
|
|
|
|
|
|
|
|
# Private attributes
|
2018-05-30 20:01:29 +00:00
|
|
|
self._expiration = 0.0
|
2017-12-25 07:51:41 +00:00
|
|
|
|
|
|
|
self.crypto_symbol = crypto_symbol.upper()
|
|
|
|
self.fiat_symbol = fiat_symbol.upper()
|
|
|
|
self.set_price(price=price)
|
|
|
|
|
|
|
|
def set_price(self, price: float) -> None:
|
|
|
|
"""
|
|
|
|
Set the price of the Crypto-currency in FIAT and set the expiration time
|
|
|
|
:param price: Price of the current Crypto currency in the fiat
|
|
|
|
:return: None
|
|
|
|
"""
|
|
|
|
self.price = price
|
|
|
|
self._expiration = time.time() + self.CACHE_DURATION
|
|
|
|
|
|
|
|
def is_expired(self) -> bool:
|
|
|
|
"""
|
|
|
|
Return if the current price is still valid or needs to be refreshed
|
|
|
|
:return: bool, true the price is expired and needs to be refreshed, false the price is
|
|
|
|
still valid
|
|
|
|
"""
|
|
|
|
return self._expiration - time.time() <= 0
|
|
|
|
|
|
|
|
|
2018-01-21 23:32:49 +00:00
|
|
|
class CryptoToFiatConverter(object):
|
2018-01-28 01:33:04 +00:00
|
|
|
"""
|
|
|
|
Main class to initiate Crypto to FIAT.
|
|
|
|
This object contains a list of pair Crypto, FIAT
|
|
|
|
This object is also a Singleton
|
|
|
|
"""
|
2018-01-21 23:32:49 +00:00
|
|
|
__instance = None
|
2018-05-30 20:09:03 +00:00
|
|
|
_coinmarketcap: Market = None
|
2018-01-21 23:32:49 +00:00
|
|
|
|
2018-05-13 17:46:08 +00:00
|
|
|
_cryptomap: Dict = {}
|
2018-03-17 23:42:24 +00:00
|
|
|
|
2018-01-21 23:32:49 +00:00
|
|
|
def __new__(cls):
|
|
|
|
if CryptoToFiatConverter.__instance is None:
|
|
|
|
CryptoToFiatConverter.__instance = object.__new__(cls)
|
|
|
|
try:
|
2018-03-17 23:42:24 +00:00
|
|
|
CryptoToFiatConverter._coinmarketcap = Market()
|
2018-01-21 23:32:49 +00:00
|
|
|
except BaseException:
|
|
|
|
CryptoToFiatConverter._coinmarketcap = None
|
|
|
|
return CryptoToFiatConverter.__instance
|
2018-01-07 04:07:40 +00:00
|
|
|
|
2018-01-21 23:32:49 +00:00
|
|
|
def __init__(self) -> None:
|
2018-05-30 20:09:03 +00:00
|
|
|
self._pairs: List[CryptoFiat] = []
|
2018-05-13 17:46:08 +00:00
|
|
|
self._load_cryptomap()
|
|
|
|
|
|
|
|
def _load_cryptomap(self) -> None:
|
|
|
|
try:
|
|
|
|
coinlistings = self._coinmarketcap.listings()
|
2018-05-13 17:54:19 +00:00
|
|
|
self._cryptomap = dict(map(lambda coin: (coin["symbol"], str(coin["id"])),
|
2018-05-13 17:46:08 +00:00
|
|
|
coinlistings["data"]))
|
2018-07-21 17:50:38 +00:00
|
|
|
except (BaseException) as exception:
|
2018-06-02 03:58:07 +00:00
|
|
|
logger.error(
|
|
|
|
"Could not load FIAT Cryptocurrency map for the following problem: %s",
|
2018-07-21 17:50:38 +00:00
|
|
|
type(exception).__name__
|
2018-06-02 03:58:07 +00:00
|
|
|
)
|
2017-12-25 07:51:41 +00:00
|
|
|
|
|
|
|
def convert_amount(self, crypto_amount: float, crypto_symbol: str, fiat_symbol: str) -> float:
|
|
|
|
"""
|
|
|
|
Convert an amount of crypto-currency to fiat
|
|
|
|
:param crypto_amount: amount of crypto-currency to convert
|
|
|
|
:param crypto_symbol: crypto-currency used
|
|
|
|
:param fiat_symbol: fiat to convert to
|
|
|
|
:return: float, value in fiat of the crypto-currency amount
|
|
|
|
"""
|
2018-04-21 21:20:12 +00:00
|
|
|
if crypto_symbol == fiat_symbol:
|
|
|
|
return crypto_amount
|
2017-12-25 07:51:41 +00:00
|
|
|
price = self.get_price(crypto_symbol=crypto_symbol, fiat_symbol=fiat_symbol)
|
|
|
|
return float(crypto_amount) * float(price)
|
|
|
|
|
|
|
|
def get_price(self, crypto_symbol: str, fiat_symbol: str) -> float:
|
|
|
|
"""
|
|
|
|
Return the price of the Crypto-currency in Fiat
|
|
|
|
:param crypto_symbol: Crypto-currency you want to convert (e.g BTC)
|
|
|
|
:param fiat_symbol: FIAT currency you want to convert to (e.g USD)
|
|
|
|
:return: Price in FIAT
|
|
|
|
"""
|
|
|
|
crypto_symbol = crypto_symbol.upper()
|
|
|
|
fiat_symbol = fiat_symbol.upper()
|
|
|
|
|
|
|
|
# Check if the fiat convertion you want is supported
|
|
|
|
if not self._is_supported_fiat(fiat=fiat_symbol):
|
2018-06-05 05:33:08 +00:00
|
|
|
raise ValueError(f'The fiat {fiat_symbol} is not supported.')
|
2017-12-25 07:51:41 +00:00
|
|
|
|
|
|
|
# Get the pair that interest us and return the price in fiat
|
|
|
|
for pair in self._pairs:
|
|
|
|
if pair.crypto_symbol == crypto_symbol and pair.fiat_symbol == fiat_symbol:
|
|
|
|
# If the price is expired we refresh it, avoid to call the API all the time
|
|
|
|
if pair.is_expired():
|
|
|
|
pair.set_price(
|
|
|
|
price=self._find_price(
|
|
|
|
crypto_symbol=pair.crypto_symbol,
|
|
|
|
fiat_symbol=pair.fiat_symbol
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
# return the last price we have for this pair
|
|
|
|
return pair.price
|
|
|
|
|
|
|
|
# The pair does not exist, so we create it and return the price
|
|
|
|
return self._add_pair(
|
|
|
|
crypto_symbol=crypto_symbol,
|
|
|
|
fiat_symbol=fiat_symbol,
|
|
|
|
price=self._find_price(
|
|
|
|
crypto_symbol=crypto_symbol,
|
|
|
|
fiat_symbol=fiat_symbol
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
def _add_pair(self, crypto_symbol: str, fiat_symbol: str, price: float) -> float:
|
|
|
|
"""
|
|
|
|
:param crypto_symbol: Crypto-currency you want to convert (e.g BTC)
|
|
|
|
:param fiat_symbol: FIAT currency you want to convert to (e.g USD)
|
|
|
|
:return: price in FIAT
|
|
|
|
"""
|
|
|
|
self._pairs.append(
|
|
|
|
CryptoFiat(
|
|
|
|
crypto_symbol=crypto_symbol,
|
|
|
|
fiat_symbol=fiat_symbol,
|
|
|
|
price=price
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
return price
|
|
|
|
|
|
|
|
def _is_supported_fiat(self, fiat: str) -> bool:
|
|
|
|
"""
|
|
|
|
Check if the FIAT your want to convert to is supported
|
|
|
|
:param fiat: FIAT to check (e.g USD)
|
|
|
|
:return: bool, True supported, False not supported
|
|
|
|
"""
|
|
|
|
|
|
|
|
fiat = fiat.upper()
|
|
|
|
|
2018-06-03 11:47:36 +00:00
|
|
|
return fiat in SUPPORTED_FIAT
|
2017-12-25 07:51:41 +00:00
|
|
|
|
|
|
|
def _find_price(self, crypto_symbol: str, fiat_symbol: str) -> float:
|
|
|
|
"""
|
|
|
|
Call CoinMarketCap API to retrieve the price in the FIAT
|
|
|
|
:param crypto_symbol: Crypto-currency you want to convert (e.g BTC)
|
|
|
|
:param fiat_symbol: FIAT currency you want to convert to (e.g USD)
|
|
|
|
:return: float, price of the crypto-currency in Fiat
|
|
|
|
"""
|
|
|
|
# Check if the fiat convertion you want is supported
|
|
|
|
if not self._is_supported_fiat(fiat=fiat_symbol):
|
2018-06-05 05:33:08 +00:00
|
|
|
raise ValueError(f'The fiat {fiat_symbol} is not supported.')
|
2018-03-17 23:42:24 +00:00
|
|
|
|
2018-06-02 03:58:07 +00:00
|
|
|
# No need to convert if both crypto and fiat are the same
|
|
|
|
if crypto_symbol == fiat_symbol:
|
|
|
|
return 1.0
|
|
|
|
|
2018-05-13 17:46:08 +00:00
|
|
|
if crypto_symbol not in self._cryptomap:
|
2018-04-21 21:20:12 +00:00
|
|
|
# return 0 for unsupported stake currencies (fiat-convert should not break the bot)
|
|
|
|
logger.warning("unsupported crypto-symbol %s - returning 0.0", crypto_symbol)
|
|
|
|
return 0.0
|
2018-06-02 22:29:29 +00:00
|
|
|
|
2018-01-07 04:07:40 +00:00
|
|
|
try:
|
|
|
|
return float(
|
|
|
|
self._coinmarketcap.ticker(
|
2018-05-13 17:46:08 +00:00
|
|
|
currency=self._cryptomap[crypto_symbol],
|
2018-01-07 04:07:40 +00:00
|
|
|
convert=fiat_symbol
|
2018-05-13 17:58:48 +00:00
|
|
|
)['data']['quotes'][fiat_symbol.upper()]['price']
|
2018-01-07 04:07:40 +00:00
|
|
|
)
|
2018-06-02 03:58:07 +00:00
|
|
|
except BaseException as exception:
|
|
|
|
logger.error("Error in _find_price: %s", exception)
|
2018-01-07 04:07:40 +00:00
|
|
|
return 0.0
|