KaskoazulOlympusDAO - Treasury Total USD
    Updated 2022-04-17
    select --date_trunc('week', balance_date) as fecha,
    balance_date,
    sum(amount_usd)
    --avg(amount_usd) as avg_USD
    --count(distinct symbol) as currencies
    from ethereum.erc20_balances
    where user_address = lower('0x9A315BdF513367C0377FB36545857d12e85813Ef') --V3
    --and balance > 0
    --and amount_usd > 0
    and balance_date >= '2021-10-01'
    group by 1
    order by 1
    Run a query to Download Data