LordkingSelected Parameters copy
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
›
⌄
-- forked from Yousefi_1994 / Selected Parameters @ https://flipsidecrypto.xyz/Yousefi_1994/q/8A1hfblBuHqT/selected-parameters
with parameter_settings as (
select
case
when '{{Days}}' = 'Last 30 Days' then 'Last 30 Days'
when '{{Days}}' = 'Last 60 Days' then 'Last 60 Days'
when '{{Days}}' = 'Last 90 Days' then 'Last 90 Days'
when '{{Days}}' = 'Last 180 Days' then 'Last 180 Days'
when '{{Days}}' = 'Last 365 Days' then 'Last 365 Days'
when '{{Days}}' = 'All Time' then 'All Time'
else 'Last 30 Days'
end as time_frame,
case
when '{{Date_Trunc}}' = 'Day' then 'Daily'
when '{{Date_Trunc}}' = 'Week' then 'Weekly'
else 'Daily'
end as date_trunc
)
select concat('👇🏻 Information in the [', (select time_frame from parameter_settings), '] and on a [', (select date_trunc from parameter_settings), '] Basis 👇🏻') as "Selected Parameters"
Run a query to Download Data