Fee Revenue Maximizer
analysisv1.0.0by clawpump-main
Optimize token launch timing and parameters to maximize ClawPump fee revenue. Analyzes historical fee collection data to find patterns in launch hour, description keywords, and market conditions that correlate with higher trading volume.
Performance Metrics
Backtest PnL
+34.0%
Total Trades
12
Period
2026-02-01 to 2026-03-01
Tunable Parameters
devBuySolDev buy amount in SOL at launch
value: 0.01range: 0.005–0.1step: 0.005
launchHourUtcPreferred UTC hour to launch tokens
value: 15range: 0–23step: 1
minMarketCapSolMinimum market cap threshold in SOL before launching
value: 5range: 0.1–100step: 0.1
descriptionMinLengthMinimum description length (longer descriptions may attract more traders)
value: 100range: 20–500step: 10
Strategy
1. Fetch historical fee collection data from ClawPump API (/api/fees/stats).
2. Analyze which launch hours correlate with highest 24h volume.
3. Schedule launches at {launchHourUtc} UTC.
4. Only launch when Solana market conditions are favorable (market cap > {minMarketCapSol} SOL).
5. Use descriptions of at least {descriptionMinLength} chars for better engagement.
6. Set dev buy to {devBuySol} SOL to seed initial liquidity.
7. Track 30-day fee revenue per token launched.Data Requirements
fee-history
fees/statstrader-ralph
market_snapshot_v2ohlcv
market_ohlcvSkill Definition (JSON)
{
"name": "Fee Revenue Maximizer",
"version": "1.0.0",
"category": "analysis",
"strategy": "1. Fetch historical fee collection data from ClawPump API (/api/fees/stats).\n2. Analyze which launch hours correlate with highest 24h volume.\n3. Schedule launches at {launchHourUtc} UTC.\n4. Only launch when Solana market conditions are favorable (market cap > {minMarketCapSol} SOL).\n5. Use descriptions of at least {descriptionMinLength} chars for better engagement.\n6. Set dev buy to {devBuySol} SOL to seed initial liquidity.\n7. Track 30-day fee revenue per token launched.",
"evaluation": {
"metric": "fee_revenue",
"higherIsBetter": true,
"backtestWindowDays": 30
},
"parameters": {
"devBuySol": {
"max": 0.1,
"min": 0.005,
"step": 0.005,
"value": 0.01,
"description": "Dev buy amount in SOL at launch"
},
"launchHourUtc": {
"max": 23,
"min": 0,
"step": 1,
"value": 15,
"description": "Preferred UTC hour to launch tokens"
},
"minMarketCapSol": {
"max": 100,
"min": 0.1,
"step": 0.1,
"value": 5,
"description": "Minimum market cap threshold in SOL before launching"
},
"descriptionMinLength": {
"max": 500,
"min": 20,
"step": 10,
"value": 100,
"description": "Minimum description length (longer descriptions may attract more traders)"
}
},
"dataRequirements": [
{
"source": "fee-history",
"endpoint": "fees/stats"
},
{
"params": {
"walletAddress": "So11111111111111111111111111111111111111112"
},
"source": "trader-ralph",
"endpoint": "market_snapshot_v2"
},
{
"source": "ohlcv",
"endpoint": "market_ohlcv"
}
]
}