Skip to content

App: MarketCap

Jan Dvořák edited this page Jan 3, 2022 · 2 revisions

Description

MarketCap is an application that shows the current market capitalization of any cryptocurrency supported by CoinGecko. You can find the list of supported coins at Coingecko API Documentaion

Examples

This is a minimum you must specify in your conf.py

{
    'name': 'marketcap',
    'crypto': 'bitcoin',
    'base_currency': 'usd',
},

These are examples of other parameters you can configure. Look into Configuration to see all possibilities.

{
    'name': 'crypto',
    'crypto': 'cardano',
    'base_currency': 'gbp',
    'duration': 60,
},

Required parameters

name

Identify the app by its name.

crypto

Ticker of a cryptocurrency.

base_currency

The base currency you are familiar with (e.g. usd, eur, gbp, btc, sats, etc.).

Clone this wiki locally