glass_blossomsUSDT Deviation
    Updated 2022-05-13
    select hour,
    max(case when symbol='USDT' then price end) as USDT,
    100 * (USDT - 1) as "USDT Deviation from USD"
    from ethereum.token_prices_hourly
    where (symbol = 'USDT')
    and date_trunc('day', hour) >= date_trunc('day', CURRENT_DATE) - 6
    group by 1
    Run a query to Download Data