# CryptoCompare.com API Key CRYPTOCOMPARE_API_KEY = "" # Base currency is used to retrieve rates from bitcoinaverage. DEFAULT_BASE_CURRENCY = "USD" AVAILABLE_BASE_CURRENCIES = ["USD", "EUR", "GBP"] # The crypto currencies to retrieve data about. AVAILABLE_CRYPTO_CURRENCIES = [ "BTC", "ETH", "LTC", "EOS", "XRP", "BCH", ] # DEFAULT_DISPLAY_CURRENCIES = ["BTC", "ETH", "LTC"] # Number of historic timepoints to plot (days). NUMBER_OF_TIMEPOINTS = 150 # Colour cycle to use for plotting currencies. BREWER12PAIRED = [ "#a6cee3", "#1f78b4", "#b2df8a", "#33a02c", "#fb9a99", "#e31a1c", "#fdbf6f", "#ff7f00", "#cab2d6", "#6a3d9a", "#ffff99", "#b15928", ]