Claws of Doom (System F) is a fully autonomous crypto trading signal generator running 24/7 via GitHub Actions. It scans 3 major cryptocurrencies every 15 minutes using 6 distinct strategies, generates entry/TP/SL signals, and tracks performance with a full audit trail.
Crypto only — BTC, ETH, SOL (the 3 highest-liquidity coins)
Why only 3? Unlike our other systems that scan 10-200 symbols, Claws of Doom focuses on depth over breadth. Fewer symbols = more API redundancy per symbol = zero missed scans. The "bulletproof" guarantee requires tight scope.
| Layer | API | Data | Rate Limit |
|---|---|---|---|
| 1 (Primary) | Binance | Spot + 24h change + funding rates | 1200/min |
| 2 | CoinGecko | Spot + 24h change | 30/min (free) |
| 3 | CryptoCompare | Spot + 24h change | 100K/month |
| 4 | CoinCap | Spot + 24h change | 200/min |
| 5 (Emergency) | Hardcoded estimates | Last-known prices | N/A |
+ Fear & Greed Index from alternative.me/crypto — the most widely used crypto sentiment index. It aggregates volatility (25%), market momentum (25%), social media (15%), surveys (15%), BTC dominance (10%), and Google Trends (10%) into a single 0-100 score. When it drops below 25, historically that marks buying opportunities.
confidence = base(0.55) + fear_bonus(0-0.15) + momentum_bonus(0-0.10)
Every pick includes a reason field explaining exactly why it was generated. The system only generates a pick when a strategy's conditions are met — there are no random or filler picks. If no conditions trigger, the dashboard shows "No active picks."
Each pick card shows: the strategy name, a full strategy description, the documented edge, the confidence formula breakdown, entry/TP/SL levels, position sizing, and the specific market condition that triggered it (e.g., "Fear & Greed = 11 (Extreme Fear), SOL +7.4% 24h").
| Step | What Happens |
|---|---|
| 1. Trigger | GitHub Actions cron fires every 15 minutes |
| 2. Price Fetch | Try Binance → CoinGecko → CryptoCompare → CoinCap → Emergency estimates |
| 3. F&G Fetch | Fetch Fear & Greed from alternative.me (with fallback estimation) |
| 4. Strategy Eval | Run all 6 strategies against current market data |
| 5. TP/SL Check | Validate active picks against current prices (close if TP/SL hit) |
| 6. Commit | Write picks.json, active_picks.json, closed_picks.json, picks_history.json |
| 7. Deploy | GitHub Pages auto-deploys updated dashboard |
All performance below is FORWARD-TEST (live) — generated in real-time against live Binance prices. Updated automatically every 15 minutes.
systems/claws_engine.py (~52KB, full strategy logic)systems/claws_bulletproof.py.github/workflows/trade.yml (every 15 min)New picks are issued only when market conditions trigger a strategy. In current extreme fear (F&G=11), the Extreme Fear Contrarian strategy is active. Other strategies will trigger when:
CLAWSOFDOOM is a fully autonomous, rule-based crypto trading signal generator (no ML dependencies). It runs 24/7 via GitHub Actions every 15 minutes, scanning BTC, ETH, and SOL using 6 proven strategies with 5 API fallback layers.
All strategies are rule-based (not machine learning). Each strategy has specific, deterministic entry criteria — when conditions are met, a pick is generated. When no conditions trigger, no picks are issued.
| Strategy | Direction | Entry Criteria | Expected WR |
|---|---|---|---|
| Extreme Fear Contrarian | LONG | F&G ≤ 25 + negative/volatile 24h | 65-71% |
| Crash Reversal Bounce | LONG | 24h decline >10% + volume spike | 62% |
| Momentum Breakout | LONG | 24h gain >5% + F&G > 50 | 58-63% |
| RSI Overbought + SMA | SHORT | RSI(14) > 70 + price < 200-SMA | 60-65% |
| EMA Cross + RSI Div | SHORT | EMA(12) < EMA(50) + RSI div + F&G < 40 | 55-60% |
| Funding Rate Carry | BOTH | Binance funding >0.05% or <-0.03% | 60-70% |
| Version | Frequency | Cron | Status |
|---|---|---|---|
| CLAWSOFDOOM v1 | Every 30 minutes | */30 * * * * | Retired |
| CLAWSOFDOOM v2/v3 (current) | Every 15 minutes | */15 * * * * | ACTIVE |
Next picks: Within 15 minutes of the last run (continuous, 24/7). Can also be triggered manually via workflow_dispatch.
| Feature | CLAWSOFDOOM | Mercury 2 | Alpha Engine | KIMI |
|---|---|---|---|---|
| Strategy Type | Rule-based (proven) | XGBoost ML | 100 mixed | 81 algorithms |
| Scan Frequency | 15 min | 30 min | 15 min | 15 min |
| Assets | 3 crypto | 10+ crypto | Crypto+FX+Equity | Crypto+FX |
| ML Dependencies | None | LightGBM/XGBoost | Multiple | RF ranker |
| API Resilience | 5 layers | 3 layers | Standard | 3 layers |
All performance shown on this dashboard is FORWARD-TEST (live) — not backtested. Picks are generated in real-time against live market prices and tracked to TP/SL resolution. Every trade is auditable with entry/exit timestamps in EST.
CLAWSOFDOOM is designed to be "bulletproof" — it will never fail to produce a scan, even if every API goes down. The 5-layer fallback system guarantees data availability. Zero ML dependencies mean no model drift, no retraining, no surprise failures. Every decision is transparent and deterministic.