tomingTop 50 profitable token traders copy
    Updated 2024-02-10
    -- forked from MLDZMN / Top 50 profitable token traders @ https://flipsidecrypto.xyz/MLDZMN/q/VQJhSuJiuhil/top-50-profitable-token-traders

    with tb4 as (select
    date_trunc('day',TIMESTAMP) as day,
    TOKEN_CONTRACT,
    Symbol,
    avg(price_usd) as price_token
    from flow.price.fact_prices
    group by 1,2,3
    ),
    t1 as (select
    distinct TRADER as trader,
    count(distinct tx_id) as no_swaps,
    sum(TOKEN_IN_AMOUNT*a.price_token) as volume_usd_in,
    sum(TOKEN_OUT_AMOUNT*b.price_token) as volume_usd_out,
    volume_usd_out-volume_usd_in as profit_usd
    from flow.defi.ez_swaps s
    left join tb4 a on s.TOKEN_IN_CONTRACT=a.TOKEN_CONTRACT and s.BLOCK_TIMESTAMP::date=a.day
    left join tb4 b on s.TOKEN_OUT_CONTRACT=b.TOKEN_CONTRACT and s.BLOCK_TIMESTAMP::date=b.day
    where BLOCK_TIMESTAMP>='2023-01-01'
    group by 1 having profit_usd>0)
    select
    trader as "Address of Token Trader",
    volume_usd_out - volume_usd_in as "Net USD profit",
    no_swaps as "Count of trades",
    row_number() over (order by "Net USD profit" desc) as "Rank"
    from t1
    order by 2 DESC
    limit 50


    Last run: over 1 year ago
    Address of Token Trader
    Net USD profit
    Count of trades
    Rank
    1
    0x24263c125b7770e0193182.100680888484531
    2
    0xa594431e22eee79d103409.69127424896182
    3
    0x81aeee0bb37b43cf78195.55244675783
    4
    0xcd2fe9ffd61cfd1316573.193471725344
    5
    0xea2355dec488d4f813510.65596722425
    6
    0x01d54e5e79dfa2e49929.8551517292466
    7
    0xcc48e500a4ae52118140.040046083137
    8
    0x85e9f199a8d8ecf55440.879671331738
    9
    0x1d5b5466555ab0945031.08105960729
    10
    0x571ceb2395dfe1e44649.7926225644610
    11
    0x6cf2a1b727b918a24021.887587988211
    12
    0xbedbf38a9159040a3978.9442059832412
    13
    0xcc439d09d39ecae23852.260517344313
    14
    0x1ad81116ddb2b71d3315.756583285178514
    15
    0xe58a5c22c4d6d88c3286.5550788663915
    16
    0x5672e44ab48a02803183.62933633494516
    17
    0xd973b8783137d5102644.9158985452317
    18
    0xe7bd0f96470301162426.7904512781818
    19
    0x3b14a0bb94ac59b92366.7354001611219
    20
    0xbeb8d0c6ea114ca92173.1927286993020
    50
    2KB
    1s