SandeshUser NFT trades PnL
    Updated 2025-01-27
    /*
    NFT Trading Performance Analysis Query

    This query analyzes NFT trading activity for a specific Ethereum wallet address, calculating realized
    and unrealized profits/losses. It tracks buy and sell transactions, matches them appropriately,
    and includes current floor prices for NFTs still held in the wallet.

    Key Features:
    - Tracks both buying and selling activities for non-fungible tokens (excluding ERC1155)
    - Matches buy transactions with subsequent sells of the same NFT
    - Calculates profit/loss in USD for each trade
    - Includes current floor prices for unsold NFTs
    - Handles price conversions and temporal relationships
    */

    -- Buy Transactions CTE
    -- Captures all NFT purchase events for the specified wallet
    with eth as
    (
    WITH buy_transactions AS (
    SELECT
    block_timestamp AS purchase_timestamp,
    tx_hash AS purchase_transaction_hash,
    buyer_address AS wallet_address,
    nft_address AS token_contract_address,
    PROJECT_NAME AS collection_name,
    tokenid AS token_id,
    price AS purchase_price_eth,
    price_usd AS purchase_price_usd,
    row_number() over (partition by nft_address, tokenId order by block_timestamp asc) as buying_sequece -- to match trades accurately when repeated buying same token
    FROM ethereum.nft.ez_nft_sales
    WHERE wallet_address = LOWER('{{Address}}')
    AND erc1155_value IS NULL -- Exclude ERC1155 tokens to focus on unique NFTs
    ),
    -- Sell Transactions CTE
    Last run: 3 months ago
    PURCHASE_TIMESTAMP
    COLLECTION_NAME
    TOKEN_ID
    PURCHASE_PRICE_USD
    SALE_TIMESTAMP
    SALE_PRICE_USD
    REALIZED_PNL_USD
    TOTAL_PNL_USD
    1
    2021-09-20 16:34:23.000Sidus NFT Heroes724168.4908227082021-11-25 19:22:16.0004514.1657066424345.6748839354345.674883935
    2
    2021-11-03 05:57:20.000NFT Worlds9948685.1516993572021-12-06 16:36:49.0002018.5349142371333.383214881333.38321488
    3
    2021-10-24 06:31:54.000Evaverse7301269.6699074752022-02-12 06:11:39.0001029.213162607759.543255131759.543255131
    4
    2023-11-28 04:38:31.000ApeironPlanet6947167.9890848672023-12-24 14:15:26.000342.208395005174.219310138174.219310138
    5
    2023-11-28 04:36:23.000ApeironPlanet5819167.9890848672023-12-23 03:26:40.000325.10409526157.115010393157.115010393
    6
    2023-11-28 04:38:31.000ApeironPlanet7771167.9890848672023-12-26 03:16:35.000317.372229319149.383144452149.383144452
    7
    2023-11-28 04:38:31.000ApeironPlanet5623166.9771024282023-12-26 02:17:14.000294.561222757127.584120329127.584120329
    8
    2021-10-25 11:00:33.000ToadRunnerz54236.4366236692022-02-07 15:18:38.000262.29363566825.85701225.857012
    9
    2021-10-18 23:15:12.000BrokeBoyz2305299.41197333Still holding000
    10
    2023-05-12 15:52:04.000Ascended Kana22162.461491421Still holding000
    11
    2023-05-26 20:52:59.000ChampionsAscensionElemental605821.992789489Still holding000
    12
    2023-05-26 20:52:59.000ChampionsAscensionElemental843136.654649148Still holding000
    13
    2024-06-07 00:22:59.000Tennis Champs Genesis Series2603304.552Still holding00179.988762718
    14
    2023-05-26 20:52:59.000ChampionsAscensionElemental477636.654649148Still holding000
    15
    2021-10-09 08:32:44.000Sandboxs LANDs1120582518.137176529Still holding000
    16
    2024-03-31 04:32:51.000Fableborne Primordials1301705.727128457Still holding000
    17
    2023-05-12 15:52:04.000Ascended Kana19662.461491421Still holding000
    18
    2023-05-19 17:10:11.000ChampionsAscensionPet359510.893349811Still holding000
    19
    2023-05-26 20:52:59.000ChampionsAscensionElemental702116.494592116Still holding000
    20
    2023-05-12 15:52:04.000Ascended Kana23272.461491421Still holding000
    ...
    125
    12KB
    24s