select
address_name,
sum(amount) as eth_amount
from ethereum.core.ez_eth_transfers t inner join ethereum.core.dim_labels l on l.address = t.eth_from_address
where label_type = 'cex'
and block_timestamp >= CURRENT_DATE - 15
group by 1
order by eth_amount desc
limit 5