Eman-Raz% of Price Fluctuations
    Updated 2023-05-15
    ----------------------------------------PEPE----------------------------------------------------
    with pepe as (select ((MAX(price)-MIN(price))/MIN(price))*100 as "%Fluctuations", 'PEPE' AS "Memecoin"
    from ethereum.core.fact_hourly_token_prices
    where token_address=lower('0x6982508145454ce325ddbe47a25d4ec3d2311933')),

    ----------------------------------------SHIB---------------------------------------------------

    shib as (select ((MAX(price)-MIN(price))/MIN(price))*100 as "%Fluctuations", 'SHIB' AS "Memecoin"
    from ethereum.core.fact_hourly_token_prices
    where token_address=lower('0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce')),

    ----------------------------------------CHAD-----------------------------------------------------

    chad as (select ((MAX(price)-MIN(price))/MIN(price))*100 as "%Fluctuations", 'CHAD' AS "Memecoin"
    from ethereum.core.fact_hourly_token_prices
    where token_address=lower('0x6B89B97169a797d94F057F4a0B01E2cA303155e4')),

    ----------------------------------------DOGE---------------------------------------------------------

    doge as (select ((MAX(price)-MIN(price))/MIN(price))*100 as "%Fluctuations", 'DOGE' AS "Memecoin"
    from bsc.core.fact_hourly_token_prices
    where symbol='DOGE'),

    ----------------------------------------BONK--------------------------------------------------------------
    bonk as (select ((MAX(CLOSE)-MIN(CLOSE))/MIN(CLOSE))*100 as "%Fluctuations", 'BONK' AS "Memecoin"
    from solana.core.fact_token_prices_hourly
    where symbol='BONK')
    -----------------------------------------------------------------------------------------------------------
    select * from pepe union all
    select * from shib union all
    select * from chad union all
    select * from doge union all
    select * from bonk



    Run a query to Download Data