with query AS (select sum(amount) AS outflow,
block_timestamp::date AS date_time
from ethereum.core.ez_token_transfers
where block_timestamp::date >= '2022-01-01'
and (from_address = '0x7b18913d945242a9c313573e6c99064cd940c6af'
or from_address = '0x19b3eb3af5d93b77a5619b047de0eed7115a19e7'
or from_address = '0xe94b5eec1fa96ceecbd33ef5baa8d00e4493f4f3')
group by date_time)
select outflow, date_time
from query
order by date_time