jackguyManttel - 1 copy
    Updated 2024-01-30
    -- forked from Manttel - 1 @ https://flipsidecrypto.xyz/edit/queries/d07da50a-2ead-4b89-91bb-b35854cf8653

    SELECT
    *,
    sum(volume) over (ORDER BY day) as total_volume

    FROM (
    SELECT
    date_trunc('day', block_timestamp) as day,
    count(*) as events,
    sum(price * token_price) as volume,
    median(price * token_price) as median_price,
    min(price * token_price) as floor_price,
    count(DISTINCT buyer) as buyers
    FROM flow.nft.ez_nft_sales
    LEFT outer join (
    SELECT
    date(RECORDED_HOUR) as day,
    median(open) as token_price
    FROM flow.price.fact_hourly_prices
    WHERE token LIKE 'Flow'
    GROUP BY 1
    ) on day = date(block_timestamp)
    WHERE NFT_collection like '%BarbieCard%'
    GROUP BY 1
    )




    Last run: about 1 year agoAuto-refreshes every 6 hours
    DAY
    EVENTS
    VOLUME
    MEDIAN_PRICE
    FLOOR_PRICE
    BUYERS
    TOTAL_VOLUME
    1
    2023-09-16 00:00:00.000526.2874313614.3507072814.07592576918214.108321334
    2
    2023-05-30 00:00:00.00098201.390790151.12781850.7293226362312.855465057
    3
    2023-06-06 00:00:00.00021.5251152910.76255764570.729402965412797.677499236
    4
    2023-08-02 00:00:00.00011.5791535161.5791535161.57915351615689.150526382
    5
    2023-10-21 00:00:00.000638.7655788146.092378515.415447564210496.943485232
    6
    2023-11-12 00:00:00.00013.4719323313.4719323313.471932331111702.978668035
    7
    2023-07-19 00:00:00.00011.5979122161.5979122161.59791221614466.997261788
    8
    2023-08-11 00:00:00.0003653.3556750841.5328887011.25418166526060.447987138
    9
    2023-10-02 00:00:00.0001049.997347423.6016425782.33872894729696.223479931
    10
    2023-11-02 00:00:00.000763.0389930668.1515939313.260637572111141.374627979
    11
    2023-09-05 00:00:00.00012.6113207012.6113207012.61132070117885.514248364
    12
    2023-10-01 00:00:00.000313.2274708334.5151241443.59367023719646.226132511
    13
    2023-10-24 00:00:00.000220.42308674810.2115433747.65865753210541.849496205
    14
    2023-09-15 00:00:00.0001151.5138661724.4196024432.5497706418187.820889973
    15
    2023-11-17 00:00:00.000535.7015589076.6113997986.611399798111872.408424521
    16
    2023-07-31 00:00:00.00048.4885669681.7562552351.75625523525461.544922865
    17
    2023-10-18 00:00:00.000535.0314583415.692611984.378932293110403.331369738
    18
    2023-09-24 00:00:00.0002241.272950384120.63647519217.87207039919353.416135611
    19
    2023-09-06 00:00:00.00025.6553613162.8276806582.61016676117891.16960968
    20
    2023-08-31 00:00:00.000836.4707493612.8492772940.45588436737600.017507881
    ...
    167
    14KB
    6s