Eman-RazNew Traders Ratio
    Updated 2024-01-29
    with table1 as (select date_trunc('{{Time_Frame}}',block_timestamp) as "Date", COUNT(DISTINCT ORIGIN_FROM_ADDRESS) AS "Total Trader"
    from gnosis.defi.ez_dex_swaps
    where block_timestamp::date>='{{Start_Date}}' and block_timestamp::date<='{{End_Date}}' and platform='honeyswap'
    group by 1
    order by 1),


    table2 as (with tab1 as (select ORIGIN_FROM_ADDRESS AS "Trader", min(block_timestamp::date) as first_trade
    from gnosis.defi.ez_dex_swaps
    where platform='honeyswap'
    group by 1)

    select date_trunc('{{Time_Frame}}',first_trade) as "Date", count(distinct "Trader") as "New Trader"
    from tab1
    where first_trade::date>='{{Start_Date}}' and first_trade::date<='{{End_Date}}'
    group by 1
    order by 1)


    select table1."Date" as "Date", "Total Trader", "New Trader", "New Trader"/"Total Trader" as "Ratio"
    from table1 left join table2 on table1."Date"=table2."Date"
    order by 1
    Last run: about 1 year agoAuto-refreshes every 24 hours
    Date
    Total Trader
    New Trader
    Ratio
    1
    2021-05-01 00:00:00.000902644570.493796
    2
    2021-06-01 00:00:00.000526419290.366451
    3
    2021-07-01 00:00:00.000449217600.391808
    4
    2021-08-01 00:00:00.000446415680.351254
    5
    2021-09-01 00:00:00.000780639900.511145
    6
    2021-10-01 00:00:00.000625621160.338235
    7
    2021-11-01 00:00:00.000646727750.429102
    8
    2021-12-01 00:00:00.000714334700.48579
    9
    2022-01-01 00:00:00.000484216690.344692
    10
    2022-02-01 00:00:00.000364410130.277991
    11
    2022-03-01 00:00:00.000387711720.302296
    12
    2022-04-01 00:00:00.000365612100.330963
    13
    2022-05-01 00:00:00.00030467820.25673
    14
    2022-06-01 00:00:00.00025467180.282011
    15
    2022-07-01 00:00:00.00020175810.288052
    16
    2022-08-01 00:00:00.00022016110.277601
    17
    2022-09-01 00:00:00.00024768780.354604
    18
    2022-10-01 00:00:00.000311414580.468208
    19
    2022-11-01 00:00:00.00019596360.324655
    20
    2022-12-01 00:00:00.00014504850.334483
    33
    2KB
    5s