theericstonepax gold stats
    Updated 2020-12-08
    select recorded_at as Date,
    count( DISTINCT symbol ) as n_currencies,
    --symbol,
    sum(market_cap) from
    public.daily_candles where
    symbol in ('PAXG','XAUT','DGX','PMGT','GLC','KBC') and
    date > '2019-01-01'
    group by 1
    order by 1,2;
    Run a query to Download Data