Use Case: Momentum Trading
Risk Level: Medium Risk Objective: Catch tokens with positive price momentum and strong buying pressure
Overview
Momentum trading identifies tokens that are actively trending upward with strong buying interest. This strategy aims to enter positions during confirmed uptrends and ride the momentum for profit.
Momentum Indicators
| Indicator | Signal |
|---|---|
| Price Change | Consistent positive % across timeframes |
| Buy/Sell Ratio | More buyers than sellers |
| Volume | Increasing or high trading volume |
| Unique Wallets | Growing participation |
| Volatility | Moderate (too low = dead, too high = risk) |
Recommended Filter Configuration
Price Momentum (Core)
price-change-pct-1h >= 5 // Positive hourly momentum
price-change-pct-24h >= 0 // Not in overall downtrend
price-change-pct-1h <= 100 // Not extreme pump (risky)Why These Values:
- ≥ 5% (1h): Confirmed upward movement, not just noise
- ≥ 0% (24h): Ensures overall trend is positive or neutral
- ≤ 100% (1h): Avoids entering after extreme pumps (dump likely)
Buy/Sell Pressure
buy-sell-ratio-1h >= 1.3 // 30% more buys than sells
buy-sell-ratio-5m >= 1.2 // Recent momentum confirmed
buyers-count-1h >= 15 // Multiple buyers, not single whaleInterpretation:
- Ratio > 1.5: Strong buy pressure
- Ratio 1.2-1.5: Healthy buy pressure
- Ratio 1.0-1.2: Neutral
- Ratio < 1.0: Sell pressure (avoid)
Volume Confirmation
volume-1h >= 30 // Active trading
volume-5m >= 3 // Recent activityWhy Volume Matters:
- Price movement without volume = unsustainable
- Volume confirms the trend has participation
- Low volume moves reverse quickly
Wallet Diversity
unique-wallets-1h >= 15 // Multiple participants
buyers-count-24h >= 30 // Sustained interestVolatility Range
volatility-1h >= 5 // Enough movement for profit
volatility-1h <= 50 // Not dangerously volatileSafety Baseline
mint-authority = 'none'
freeze-authority = 'none'
current-liquidity >= 30
top-1-holder-pct <= 20Complete Configuration
# === MOMENTUM TRADING CONFIGURATION ===
# Price Momentum
price-change-pct-1h: >= 5
price-change-pct-1h: <= 100
price-change-pct-24h: >= 0
# Buy/Sell Pressure
buy-sell-ratio-1h: >= 1.3
buy-sell-ratio-5m: >= 1.2
buyers-count-1h: >= 15
# Volume Confirmation
volume-1h: >= 30
volume-5m: >= 3
# Wallet Diversity
unique-wallets-1h: >= 15
buyers-count-24h: >= 30
# Volatility Range
volatility-1h: >= 5
volatility-1h: <= 50
# Safety Baseline
mint-authority: 'none'
freeze-authority: 'none'
current-liquidity: >= 30
top-1-holder-pct: <= 20Momentum Timeframe Strategies
Short-Term Momentum (Scalping)
Focus on 1m-15m timeframes:
price-change-pct-5m: >= 2
price-change-pct-15m: >= 5
buy-sell-ratio-5m: >= 1.5
volume-5m: >= 5
tx-count-5m: >= 15Best For: Quick trades, active monitoring
Medium-Term Momentum
Focus on 1h-4h timeframes:
price-change-pct-1h: >= 5
price-change-pct-4h: >= 10
buy-sell-ratio-1h: >= 1.3
buy-sell-ratio-4h: >= 1.2
volume-1h: >= 50
volume-4h: >= 150Best For: Swing trades, less active monitoring
Trend Confirmation Momentum
Multi-timeframe alignment:
price-change-pct-1h: >= 3
price-change-pct-4h: >= 5
price-change-pct-24h: >= 10
buy-sell-ratio-1h: >= 1.2
buy-sell-ratio-24h: >= 1.1Best For: Higher probability entries, longer holds
Avoiding False Momentum
Dead Cat Bounce Filter
Avoid temporary rebounds in downtrends:
price-change-pct-1h: >= 5 // Short-term up
price-change-pct-24h: >= -5 // Not crashing overall
price-change-pct-1w: >= -20 // Not in major downtrendPump and Dump Filter
Avoid artificial pumps:
price-change-pct-1h: <= 100 // Cap extreme moves
unique-wallets-1h: >= 20 // Multiple participants
buyers-count-1h / tx-count-1h: >= 0.3 // Diverse tradingWhale Momentum Filter
Ensure momentum isn’t whale-driven:
top-1-holder-pct: <= 15
transaction-amount-p99: <= 50
unique-wallets-1h: >= 15Momentum Strength Tiers
Tier 1: Strong Momentum
price-change-pct-1h: >= 15
buy-sell-ratio-1h: >= 1.5
volume-1h: >= 100
unique-wallets-1h: >= 30Signal: High confidence entry
Tier 2: Moderate Momentum
price-change-pct-1h: >= 5
price-change-pct-1h: < 15
buy-sell-ratio-1h: >= 1.2
volume-1h: >= 30
unique-wallets-1h: >= 15Signal: Standard entry
Tier 3: Early Momentum
price-change-pct-5m: >= 3
price-change-pct-1h: >= 0
buy-sell-ratio-5m: >= 1.3
volume-5m: >= 5Signal: Early entry, higher risk
Combining with Other Strategies
Momentum + Scam Protection
# Scam Protection
mint-authority: 'none'
freeze-authority: 'none'
permanent-delegate: false
dev-holdings: <= 15
# Momentum
price-change-pct-1h: >= 5
buy-sell-ratio-1h: >= 1.3
volume-1h: >= 30Momentum + Whale Avoidance
# Whale Avoidance
top-1-holder-pct: <= 15
top-5-holders-pct: <= 40
unique-wallets-1h: >= 20
# Momentum
price-change-pct-1h: >= 5
buy-sell-ratio-1h: >= 1.3
transaction-amount-p50: >= 0.1Exit Strategy Recommendations
Momentum trades require active exit management:
| Strategy | Configuration |
|---|---|
| Take Profit | 20-50% (momentum can reverse fast) |
| Stop Loss | -15% to -25% |
Configure in Exit Strategies
What This Configuration Catches
| Token Type | Caught? |
|---|---|
| Active uptrends | ✅ Yes |
| High buying pressure | ✅ Yes |
| Volume-confirmed moves | ✅ Yes |
| Stagnant tokens | ❌ No |
| Downtrends | ❌ No |
| Extreme pumps | ❌ No (capped at 100%) |
| Whale-driven pumps | ❌ No (diversity requirements) |
Tips for Momentum Trading
-
Don’t Chase: If a token is up 100%+, you likely missed the best entry
-
Confirm with Volume: Price movement without volume often reverses
-
Multi-Timeframe Agreement: Best entries when multiple timeframes align
-
Size Appropriately: Momentum can reverse quickly - don’t overcommit
-
Set Clear Exits: Define profit targets and stop losses before entry
-
Monitor Ratio Changes: Falling buy/sell ratio = momentum weakening
-
Watch Unique Wallets: Declining participation = trend ending
Related Pages
- Time-Based Metrics - All momentum filters
- Base Metrics - Price and liquidity
- Transaction Percentiles - Trade size analysis