Madi Optimism to USD Chart
    Updated 2022-12-18
    select date_trunc('day', HOUR) as date, min(price) as price
    from optimism.core.fact_hourly_token_prices
    where date >= '2022-10-15' and date != CURRENT_DATE and symbol = 'OP'
    group by 1
    Run a query to Download Data