winnie-fsOP Vs ETH Price copy
Updated 2023-04-26
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from Mojtaba-Banaei / OP Vs ETH Price @ https://flipsidecrypto.xyz/Mojtaba-Banaei/q/audius-4-price-hNPDAC
with eth_price as (
select
hour::date as DAY
, symbol
, avg(price) as token_price_eth
, avg(token_price_eth) over (partition by symbol order by day ROWS BETWEEN 6 PRECEDING AND CURRENT ROW ) as "Ethereum"
from
ethereum.core.fact_hourly_token_prices
where
-- symbol = 'AUDIO'
symbol = 'WETH'
and hour::DATE >= '{{start_date}}'
GROUP by 1,2
) , op_price as (
select
hour::date as DAY
, symbol
, avg(price) as token_price_op
, avg(token_price_op) over (partition by symbol order by day ROWS BETWEEN 6 PRECEDING AND CURRENT ROW ) as "OP"
from
optimism.core.fact_hourly_token_prices
where
symbol = 'OP'
and hour::DATE >= '{{start_date}}'
GROUP by 1,2
)
select
DAY
, "Ethereum"
, "OP"
from
op_price inner join eth_price using(day)
Run a query to Download Data