fantaSince the beginning of 2021 : ALGO to CEX
    Updated 2022-02-22
    with alllabels as (select address,label from algorand.labels where label_type='cex')
    select sum(amount) as sum
    , alllabels.label as lbl ,date(block_timestamp) as date
    from algorand.payment_transaction
    inner join alllabels
    on address= receiver
    where date >= '2021-01-01'
    group by 2,3
    Run a query to Download Data