adambalaust supply
    Updated 2021-12-05
    select sum(balance) ,
    date_trunc('day',date) as date
    from terra.daily_balances
    where currency ='UST'and
    date::date > current_date-100
    group by date
    order by date
    Run a query to Download Data