Skip to content
LAM
Read Home Blog
Make Projects HTML Tools Games
Touch grass Notes Resume Links
Home Blog HTML Projects
Tools Games Notes Resume Links
Back crypto metrics explained Finance
Download Open
Show description 2,254 chars · Finance

crypto metrics explained

crypto metrics explained




📊 crypto trading metrics decoded

understanding what all those numbers actually mean





💰

price




$0.0001354

0.0₆1452 WBNB



what it is: the current cost to buy one token. shown in two ways:
• USD price: $0.0001354 (how much in dollars)
• WBNB price: 0.0₆1452 (how much in wrapped BNB - another crypto)




real world example:

if you have $100, you could buy: 100 / 0.0001354 = 738,552 tokens
that tiny "₆" means there are 6 zeros after the decimal point before the numbers start




💡 why two prices? tokens can be traded against different pairs. WBNB is popular on Binance Smart Chain. both prices should move together proportionally.








💧

liquidity




$51,000



what it is: the total amount of money sitting in the trading pool, ready to facilitate trades. think of it as the "depth" of the market.





liquidity levels comparison:





$10Klow risk






$51Kthis token






$500K+safer











imagine a swimming pool:

• small kiddie pool ($10K): easy to make big waves, prices swing wildly
• medium pool ($51K): this token - moderate stability
• olympic pool ($500K+): hard to move the price, more stable




⚠️ why this matters:

low liquidity = your trades can move the price significantly. if you try to buy/sell too much at once, you'll get a worse price than expected (called "slippage")




💡 rule of thumb: generally want to see at least $100K liquidity for safer trading. $51K is medium-low risk.








📈

market cap & fdv






Market Cap

$135K


circulating supply value
= tokens currently trading × price
= total value of all tokens in circulation






FDV (Fully Diluted Value)

$135K


total supply value
= all possible tokens × price
= value if every token was unlocked








think of it like a company:

imagine a startup with 1 million shares:
• market cap: 500K shares trading publicly × $1 = $500K
• fdv: all 1M shares × $1 = $1M
the difference = shares locked up (founders, team, future releases)




💡 what to notice: both numbers are the same ($135K), meaning all tokens are already in circulation - no hidden supply waiting to dump on you later.…

crypto metrics explained

33,031 bytes · HTML source
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>crypto metrics explained</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #0a0e27;
            color: #e0e0e0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        h1 {
            color: #00d9ff;
            font-size: 2.5em;
            margin-bottom: 10px;
            text-align: center;
        }

        .subtitle {
            text-align: center;
            color: #888;
            margin-bottom: 40px;
            font-size: 1.1em;
        }

        .metric-card {
            background: linear-gradient(135deg, #1a1f3a 0%, #0f1424 100%);
            border: 1px solid #2a3f5f;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .metric-card:hover {
            border-color: #00d9ff;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
            transform: translateY(-2px);
        }

        .metric-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 2px solid #2a3f5f;
        }

        .metric-icon {
            font-size: 2em;
            margin-right: 15px;
        }

        .metric-title {
            color: #00d9ff;
            font-size: 1.8em;
            font-weight: bold;
        }

        .metric-value {
            background: #0f1424;
            padding: 10px 20px;
            border-radius: 8px;
            display: inline-block;
            font-size: 1.3em;
            color: #00ff88;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .explanation {
            color: #c0c0c0;
            font-size: 1.05em;
            margin-bottom: 15px;
        }

        .example {
            background: #1a2332;
            border-left: 4px solid #00d9ff;
            padding: 15px;
            border-radius: 6px;
            margin: 15px 0;
        }

        .example-title {
            color: #00d9ff;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .visual-bar {
            background: #1a2332;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
        }

        .bar {
            height: 30px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            padding: 0 15px;
            color: white;
            font-weight: bold;
            margin: 10px 0;
            transition: all 0.3s ease;
        }

        .bar:hover {
            transform: scaleX(1.02);
        }

        .green-bar {
            background: linear-gradient(90deg, #00ff88, #00cc66);
        }

        .red-bar {
            background: linear-gradient(90deg, #ff4444, #cc0000);
        }

        .blue-bar {
            background: linear-gradient(90deg, #00d9ff, #0088cc);
        }

        .yellow-bar {
            background: linear-gradient(90deg, #ffaa00, #ff8800);
        }

        .key-point {
            background: #1a2332;
            border-radius: 8px;
            padding: 12px 18px;
            margin: 10px 0;
            border-left: 3px solid #00ff88;
        }

        .warning {
            background: #2a1a1a;
            border-left: 3px solid #ff4444;
            padding: 15px;
            border-radius: 6px;
            margin: 15px 0;
        }

        .warning-title {
            color: #ff4444;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .grid-item {
            background: #1a2332;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #2a3f5f;
        }

        .grid-item h3 {
            color: #00d9ff;
            margin-bottom: 10px;
        }

        .percentage {
            font-size: 1.8em;
            font-weight: bold;
            margin: 10px 0;
        }

        .positive {
            color: #00ff88;
        }

        .negative {
            color: #ff4444;
        }

        .neutral {
            color: #00d9ff;
        }

        .comparison {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 15px 0;
            padding: 15px;
            background: #1a2332;
            border-radius: 8px;
        }

        .comparison-item {
            text-align: center;
            flex: 1;
        }

        .comparison-label {
            color: #888;
            font-size: 0.9em;
            margin-bottom: 5px;
        }

        .comparison-value {
            font-size: 1.5em;
            font-weight: bold;
        }

        .divider {
            color: #2a3f5f;
            font-size: 2em;
        }

        code {
            background: #0f1424;
            padding: 2px 8px;
            border-radius: 4px;
            color: #00ff88;
            font-family: 'Courier New', monospace;
        }

        .tooltip {
            position: relative;
            display: inline-block;
            color: #00d9ff;
            cursor: help;
            border-bottom: 1px dotted #00d9ff;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }
            
            .metric-title {
                font-size: 1.4em;
            }
            
            .grid {
                grid-template-columns: 1fr;
            }
        }

        .legend {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
            padding: 15px;
            background: #1a2332;
            border-radius: 8px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .legend-color {
            width: 20px;
            height: 20px;
            border-radius: 4px;
        }

        .chart-container {
            background: #1a2332;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }

        .time-frame {
            display: inline-block;
            padding: 8px 15px;
            background: #0f1424;
            border-radius: 6px;
            margin: 5px;
            font-weight: bold;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>📊 crypto trading metrics decoded</h1>
        <p class="subtitle">understanding what all those numbers actually mean</p>

        <!-- PRICE SECTION -->
        <div class="metric-card">
            <div class="metric-header">
                <div class="metric-icon">💰</div>
                <div class="metric-title">price</div>
            </div>
            
            <div class="metric-value">$0.0001354</div>
            <div class="metric-value">0.0₆1452 WBNB</div>
            
            <div class="explanation">
                <strong>what it is:</strong> the current cost to buy one token. shown in two ways:<br>
                • <strong>USD price:</strong> $0.0001354 (how much in dollars)<br>
                • <strong>WBNB price:</strong> 0.0₆1452 (how much in wrapped BNB - another crypto)
            </div>

            <div class="example">
                <div class="example-title">real world example:</div>
                if you have $100, you could buy: 100 / 0.0001354 = <strong>738,552 tokens</strong><br><br>
                that tiny "₆" means there are 6 zeros after the decimal point before the numbers start
            </div>

            <div class="key-point">
                💡 <strong>why two prices?</strong> tokens can be traded against different pairs. WBNB is popular on Binance Smart Chain. both prices should move together proportionally.
            </div>
        </div>

        <!-- LIQUIDITY SECTION -->
        <div class="metric-card">
            <div class="metric-header">
                <div class="metric-icon">💧</div>
                <div class="metric-title">liquidity</div>
            </div>
            
            <div class="metric-value">$51,000</div>
            
            <div class="explanation">
                <strong>what it is:</strong> the total amount of money sitting in the trading pool, ready to facilitate trades. think of it as the "depth" of the market.
            </div>

            <div class="visual-bar">
                <div class="chart-container">
                    <div style="margin-bottom: 15px; color: #888;">liquidity levels comparison:</div>
                    <div style="display: flex; align-items: flex-end; height: 150px; gap: 10px;">
                        <div style="flex: 1; text-align: center;">
                            <div style="background: #ff4444; height: 30px; border-radius: 4px;"></div>
                            <div style="margin-top: 10px; font-size: 0.9em;">$10K<br><span style="color: #888;">low risk</span></div>
                        </div>
                        <div style="flex: 1; text-align: center;">
                            <div style="background: #ffaa00; height: 80px; border-radius: 4px;"></div>
                            <div style="margin-top: 10px; font-size: 0.9em;">$51K<br><span style="color: #00ff88;">this token</span></div>
                        </div>
                        <div style="flex: 1; text-align: center;">
                            <div style="background: #00ff88; height: 150px; border-radius: 4px;"></div>
                            <div style="margin-top: 10px; font-size: 0.9em;">$500K+<br><span style="color: #888;">safer</span></div>
                        </div>
                    </div>
                </div>
            </div>

            <div class="example">
                <div class="example-title">imagine a swimming pool:</div>
                • <strong>small kiddie pool ($10K):</strong> easy to make big waves, prices swing wildly<br>
                • <strong>medium pool ($51K):</strong> this token - moderate stability<br>
                • <strong>olympic pool ($500K+):</strong> hard to move the price, more stable
            </div>

            <div class="warning">
                <div class="warning-title">⚠️ why this matters:</div>
                low liquidity = your trades can move the price significantly. if you try to buy/sell too much at once, you'll get a worse price than expected (called "slippage")
            </div>

            <div class="key-point">
                💡 <strong>rule of thumb:</strong> generally want to see at least $100K liquidity for safer trading. $51K is medium-low risk.
            </div>
        </div>

        <!-- MARKET CAP & FDV SECTION -->
        <div class="metric-card">
            <div class="metric-header">
                <div class="metric-icon">📈</div>
                <div class="metric-title">market cap & fdv</div>
            </div>
            
            <div class="grid">
                <div class="grid-item">
                    <h3>Market Cap</h3>
                    <div class="metric-value">$135K</div>
                    <div class="explanation">
                        <strong>circulating supply value</strong><br>
                        = tokens currently trading × price<br>
                        = total value of all tokens in circulation
                    </div>
                </div>
                
                <div class="grid-item">
                    <h3>FDV (Fully Diluted Value)</h3>
                    <div class="metric-value">$135K</div>
                    <div class="explanation">
                        <strong>total supply value</strong><br>
                        = all possible tokens × price<br>
                        = value if every token was unlocked
                    </div>
                </div>
            </div>

            <div class="example">
                <div class="example-title">think of it like a company:</div>
                imagine a startup with 1 million shares:<br>
                • <strong>market cap:</strong> 500K shares trading publicly × $1 = $500K<br>
                • <strong>fdv:</strong> all 1M shares × $1 = $1M<br><br>
                the difference = shares locked up (founders, team, future releases)
            </div>

            <div class="key-point">
                💡 <strong>what to notice:</strong> both numbers are the same ($135K), meaning <span style="color: #00ff88;">all tokens are already in circulation</span> - no hidden supply waiting to dump on you later. this is actually good!
            </div>

            <div class="warning">
                <div class="warning-title">⚠️ red flag scenario:</div>
                if market cap was $135K but FDV was $1.35M (10x higher), that means 90% of tokens are still locked. when they unlock, they could crash the price.
            </div>
        </div>

        <!-- TIME FRAMES SECTION -->
        <div class="metric-card">
            <div class="metric-header">
                <div class="metric-icon">⏰</div>
                <div class="metric-title">price changes over time</div>
            </div>
            
            <div class="chart-container">
                <div style="margin-bottom: 20px;">
                    <span class="time-frame" style="color: #ff4444;">5M: -3.38%</span>
                    <span class="time-frame" style="color: #ff4444;">1H: -2.54%</span>
                    <span class="time-frame" style="color: #00ff88;">6H: +35.50%</span>
                    <span class="time-frame" style="color: #00ff88;">24H: +22.91%</span>
                </div>

                <div class="visual-bar">
                    <div style="margin-bottom: 10px; color: #888;">visual timeline:</div>
                    <div class="bar red-bar" style="width: 40%;">5 min ago: -3.38%</div>
                    <div class="bar red-bar" style="width: 45%;">1 hour ago: -2.54%</div>
                    <div class="bar green-bar" style="width: 90%;">6 hours ago: +35.50% 🚀</div>
                    <div class="bar green-bar" style="width: 70%;">24 hours ago: +22.91%</div>
                </div>
            </div>

            <div class="explanation">
                <strong>what this tells you:</strong> how the price has moved in different time windows. each percentage shows the change from that time period to now.
            </div>

            <div class="example">
                <div class="example-title">reading the story:</div>
                <strong>24 hours ago:</strong> token was up 22.91% - started a nice run 🎢<br>
                <strong>6 hours ago:</strong> peaked at +35.50% - the pump maxed out here 🔝<br>
                <strong>1 hour ago:</strong> down to +2.54% - profit takers selling 📉<br>
                <strong>5 min ago:</strong> down to -3.38% - the dip continues ⬇️<br><br>
                <strong>translation:</strong> there was a pump, now it's correcting/dumping
            </div>

            <div class="key-point">
                💡 <strong>pattern recognition:</strong> when you see big green (6H: +35%), followed by red (5M: -3.38%), that usually means the pump is over and early buyers are taking profits. could be a good entry point IF the fundamentals are solid, or a falling knife if it keeps dumping.
            </div>

            <div class="warning">
                <div class="warning-title">⚠️ classic trap:</div>
                people see "+22.91% in 24H!" and FOMO in... not realizing it already pumped and is now correcting. <strong>always check the shorter timeframes</strong> to see the current momentum.
            </div>
        </div>

        <!-- TRANSACTIONS SECTION -->
        <div class="metric-card">
            <div class="metric-header">
                <div class="metric-icon">🔄</div>
                <div class="metric-title">transactions & buys vs sells</div>
            </div>
            
            <div class="comparison">
                <div class="comparison-item">
                    <div class="comparison-label">total transactions</div>
                    <div class="comparison-value neutral">443</div>
                </div>
                <div class="divider">=</div>
                <div class="comparison-item">
                    <div class="comparison-label">buys</div>
                    <div class="comparison-value positive">254</div>
                </div>
                <div class="divider">+</div>
                <div class="comparison-item">
                    <div class="comparison-label">sells</div>
                    <div class="comparison-value negative">189</div>
                </div>
            </div>

            <div class="visual-bar">
                <div style="margin-bottom: 10px; color: #888;">transaction breakdown:</div>
                <div style="display: flex; width: 100%; height: 50px; border-radius: 8px; overflow: hidden;">
                    <div style="width: 57.3%; background: #00ff88; display: flex; align-items: center; justify-content: center; font-weight: bold;">
                        BUYS: 254 (57.3%)
                    </div>
                    <div style="width: 42.7%; background: #ff4444; display: flex; align-items: center; justify-content: center; font-weight: bold;">
                        SELLS: 189 (42.7%)
                    </div>
                </div>
            </div>

            <div class="explanation">
                <strong>what it means:</strong><br>
                • <strong>443 total transactions:</strong> number of trades in the selected timeframe<br>
                • <strong>254 buys:</strong> people buying the token<br>
                • <strong>189 sells:</strong> people selling the token
            </div>

            <div class="example">
                <div class="example-title">analyzing the sentiment:</div>
                <strong>buy/sell ratio:</strong> 254 / 189 = 1.34<br>
                meaning: for every sell, there are 1.34 buys<br><br>
                <span style="color: #00ff88;">✓ this is bullish</span> - more buying pressure than selling
            </div>

            <div class="key-point">
                💡 <strong>combining with price action:</strong> we have more buys than sells (bullish), BUT the price is down recently (5M: -3.38%). this suggests either: (1) sells are bigger in size, or (2) the buys are smaller/"death by a thousand cuts" type selling from whales in small chunks.
            </div>
        </div>

        <!-- VOLUME SECTION -->
        <div class="metric-card">
            <div class="metric-header">
                <div class="metric-icon">💹</div>
                <div class="metric-title">volume breakdown</div>
            </div>
            
            <div class="comparison">
                <div class="comparison-item">
                    <div class="comparison-label">total volume</div>
                    <div class="comparison-value neutral">$87K</div>
                </div>
                <div class="divider">=</div>
                <div class="comparison-item">
                    <div class="comparison-label">buy volume</div>
                    <div class="comparison-value positive">$45K</div>
                </div>
                <div class="divider">+</div>
                <div class="comparison-item">
                    <div class="comparison-label">sell volume</div>
                    <div class="comparison-value negative">$42K</div>
                </div>
            </div>

            <div class="visual-bar">
                <div style="margin-bottom: 10px; color: #888;">money flow:</div>
                <div style="display: flex; width: 100%; height: 50px; border-radius: 8px; overflow: hidden;">
                    <div style="width: 51.7%; background: #00ff88; display: flex; align-items: center; justify-content: center; font-weight: bold;">
                        BUY $45K (51.7%)
                    </div>
                    <div style="width: 48.3%; background: #ff4444; display: flex; align-items: center; justify-content: center; font-weight: bold;">
                        SELL $42K (48.3%)
                    </div>
                </div>
            </div>

            <div class="explanation">
                <strong>what volume means:</strong> the total dollar amount traded in the timeframe. this is MORE important than transaction count because it shows the actual money moving.
            </div>

            <div class="example">
                <div class="example-title">volume vs liquidity check:</div>
                <strong>volume:</strong> $87K<br>
                <strong>liquidity:</strong> $51K<br>
                <strong>ratio:</strong> 87K / 51K = 1.7x<br><br>
                <span style="color: #ffaa00;">⚠️ volume is 1.7x the liquidity</span> - this means significant trading relative to pool size. can cause price volatility.
            </div>

            <div class="key-point">
                💡 <strong>the truth revealed:</strong> even though we have more buy transactions (254 vs 189), the dollar volumes are almost equal ($45K vs $42K). this means the sells are larger in size on average. someone's dumping bigger positions while retail buys small amounts.
            </div>

            <div class="comparison" style="background: #1a2a1a; border: 1px solid #00ff88;">
                <div class="comparison-item">
                    <div class="comparison-label">avg buy size</div>
                    <div class="comparison-value positive">$177</div>
                    <div style="color: #888; font-size: 0.85em;">$45K / 254</div>
                </div>
                <div class="divider" style="color: #00ff88;">vs</div>
                <div class="comparison-item">
                    <div class="comparison-label">avg sell size</div>
                    <div class="comparison-value negative">$222</div>
                    <div style="color: #888; font-size: 0.85em;">$42K / 189</div>
                </div>
            </div>

            <div class="warning">
                <div class="warning-title">⚠️ what this pattern often means:</div>
                retail (small traders) buying in small amounts ($177 avg) while whales or early buyers selling in larger chunks ($222 avg). this is often distribution - not a great sign for immediate price action.
            </div>
        </div>

        <!-- MAKERS/BUYERS/SELLERS SECTION -->
        <div class="metric-card">
            <div class="metric-header">
                <div class="metric-icon">👥</div>
                <div class="metric-title">unique participants</div>
            </div>
            
            <div class="comparison">
                <div class="comparison-item">
                    <div class="comparison-label">makers (total unique)</div>
                    <div class="comparison-value neutral">148</div>
                </div>
                <div class="divider">=</div>
                <div class="comparison-item">
                    <div class="comparison-label">buyers</div>
                    <div class="comparison-value positive">103</div>
                </div>
                <div class="divider">+</div>
                <div class="comparison-item">
                    <div class="comparison-label">sellers</div>
                    <div class="comparison-value negative">103</div>
                </div>
            </div>

            <div class="explanation">
                <strong>what these numbers mean:</strong><br>
                • <strong>makers:</strong> unique wallet addresses that made trades<br>
                • <strong>buyers:</strong> unique wallets that bought<br>
                • <strong>sellers:</strong> unique wallets that sold<br><br>
                note: 103 + 103 ≠ 148 because some wallets both bought AND sold (they're counted once in "makers")
            </div>

            <div class="example">
                <div class="example-title">calculating the overlap:</div>
                <strong>total makers:</strong> 148<br>
                <strong>buyers + sellers:</strong> 103 + 103 = 206<br>
                <strong>wallets that did both:</strong> 206 - 148 = 58 wallets<br><br>
                <span style="color: #00d9ff;">58 wallets traded both sides</span> - these are active traders/scalpers
            </div>

            <div class="key-point">
                💡 <strong>perfectly balanced (as all things should be):</strong> exactly 103 buyers and 103 sellers is interesting. this suggests decent distribution of participants on both sides, not just one-directional flow.
            </div>

            <div class="warning">
                <div class="warning-title">⚠️ what to watch for:</div>
                <strong>red flags:</strong><br>
                • if sellers = 10, buyers = 100 → means few wallets dumping on many buyers (whale distribution)<br>
                • if buyers = 10, sellers = 100 → means few buyers catching knives from many sellers<br><br>
                <strong>this token:</strong> 103 vs 103 is balanced, which is neutral/healthy
            </div>
        </div>

        <!-- PUTTING IT ALL TOGETHER -->
        <div class="metric-card" style="border: 2px solid #00d9ff;">
            <div class="metric-header">
                <div class="metric-icon">🎯</div>
                <div class="metric-title">putting it all together</div>
            </div>

            <div class="explanation" style="font-size: 1.1em;">
                <strong>the complete story this chart tells:</strong>
            </div>

            <div class="grid">
                <div class="grid-item" style="border-left: 3px solid #00ff88;">
                    <h3 style="color: #00ff88;">✓ positive signals</h3>
                    <ul style="list-style: none; padding: 0; margin-top: 15px;">
                        <li style="margin: 10px 0;">• more buy transactions (254 vs 189)</li>
                        <li style="margin: 10px 0;">• slightly more buy volume ($45K vs $42K)</li>
                        <li style="margin: 10px 0;">• all tokens in circulation (FDV = market cap)</li>
                        <li style="margin: 10px 0;">• balanced participant count (103 each side)</li>
                        <li style="margin: 10px 0;">• up 22.91% in 24 hours overall</li>
                    </ul>
                </div>

                <div class="grid-item" style="border-left: 3px solid #ff4444;">
                    <h3 style="color: #ff4444;">⚠️ warning signals</h3>
                    <ul style="list-style: none; padding: 0; margin-top: 15px;">
                        <li style="margin: 10px 0;">• recent price decline (-3.38% in 5min)</li>
                        <li style="margin: 10px 0;">• peaked 6H ago (+35.5%), now correcting</li>
                        <li style="margin: 10px 0;">• low-medium liquidity ($51K)</li>
                        <li style="margin: 10px 0;">• sells are larger on average ($222 vs $177)</li>
                        <li style="margin: 10px 0;">• volume is 1.7x liquidity (volatile)</li>
                    </ul>
                </div>
            </div>

            <div class="example">
                <div class="example-title">the verdict:</div>
                this token had a <strong>pump earlier today</strong> (peaked at +35.5% 6 hours ago), but is now in a <strong>correction phase</strong>. while there's still more buying than selling, the larger average sell sizes suggest <strong>distribution happening</strong> - early/large holders taking profits while retail buys smaller amounts.
                <br><br>
                the <strong>low liquidity ($51K)</strong> means trades can easily move the price both directions. could bounce back up, could keep dumping - it's in a volatile phase.
            </div>

            <div class="key-point" style="background: #2a1f3a; border-left: 3px solid #00d9ff; padding: 20px;">
                💡 <strong>trading decision framework:</strong><br><br>
                <strong>if you're thinking of buying:</strong> you'd be catching this during a correction after a pump. could be a good entry IF you believe it'll bounce, but you're buying from people taking profits. wait for volume to stabilize or look for a clear reversal pattern.<br><br>
                <strong>if you already own it:</strong> you're in profit if you bought early (before the pump). the current action suggests taking some profits might be wise, or at least setting a stop loss to protect gains.<br><br>
                <strong>if you're thinking of selling:</strong> others are already doing that. question is whether you're early enough to get good exits before liquidity dries up.
            </div>
        </div>

        <!-- FINAL TIPS -->
        <div class="metric-card" style="background: linear-gradient(135deg, #1a3a1a 0%, #0f2415 100%); border: 2px solid #00ff88;">
            <div class="metric-header">
                <div class="metric-icon">💎</div>
                <div class="metric-title">pro tips for reading these metrics</div>
            </div>

            <div class="grid">
                <div class="grid-item">
                    <h3>1. always check multiple timeframes</h3>
                    <p>don't just look at 24H%. check 5M, 1H, 6H to see current momentum vs historical performance.</p>
                </div>

                <div class="grid-item">
                    <h3>2. volume vs liquidity ratio</h3>
                    <p>if volume > liquidity, expect volatility. if volume is 5-10x liquidity, expect EXTREME volatility.</p>
                </div>

                <div class="grid-item">
                    <h3>3. transaction count vs volume</h3>
                    <p>more transactions with lower volume = retail activity. fewer transactions with higher volume = whales moving.</p>
                </div>

                <div class="grid-item">
                    <h3>4. fdv vs market cap gap</h3>
                    <p>big gap (fdv >> market cap) = lots of locked tokens that will unlock eventually. potential future selling pressure.</p>
                </div>

                <div class="grid-item">
                    <h3>5. average trade sizes</h3>
                    <p>calculate avg buy size and avg sell size. if sells are consistently bigger, that's distribution (bad). if buys are bigger, that's accumulation (good).</p>
                </div>

                <div class="grid-item">
                    <h3>6. participant balance</h3>
                    <p>healthy tokens have balanced unique buyers/sellers. extreme imbalances (10 sellers, 200 buyers) = someone dumping on retail.</p>
                </div>
            </div>

            <div class="warning">
                <div class="warning-title">⚠️ most important rule:</div>
                <strong>no single metric tells the whole story.</strong> you need to look at ALL of them together to understand what's really happening. a token can have positive buy/sell ratio but still be dumping because the sells are bigger. price can be up 24H but down in recent timeframes meaning the move is over.
                <br><br>
                <strong>always combine metrics to see the full picture.</strong>
            </div>
        </div>

        <div style="text-align: center; padding: 40px 20px; color: #888;">
            <p>now you know how to read the numbers. use them wisely. 🧠</p>
        </div>
    </div>
</body>
</html>