CartanGroupBAYC FLOOR
Updated 2024-06-05
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
with a as
(SELECT
avg (price) as prices ,BLOCK_TIMESTAMP::date as date
FROM ethereum.nft.ez_nft_sales
WHERE EVENT_TYPE = 'sale' and CURRENCY_SYMBOL in ('ETH','WETH')
and NFT_ADDRESS=lower('0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d')
group by date)
select
date,
avg(prices) over(
order by date
rows between 100 preceding and current row ) floor
from a
QueryRunArchived: QueryRun has been archived