| name | polymarket-simmer-fastloop-sync-pulse |
| displayName | Polymarket Simmer FastLoop Sync Pulse |
| description | Trade Polymarket BTC/ETH/SOL 5-minute fast markets using a zero-delay Triple-Trigger strategy. Combines Binance momentum, NOFX OI/Netflow (free public API), and L2 Wall detection to choose between Trend Following and Mean Reversion. Pre-Caches market IDs to bypass the Simmer API blackout at market open. |
| version | 1.0.2 |
| author | Xuano47 |
| tags | ["polymarket","trading","btc","quantitative","sniper"] |
| pip | ["simmer-sdk"] |
| env | ["SIMMER_API_KEY","WALLET_PRIVATE_KEY"] |
Polymarket Simmer FastLoop Sync Pulse
[!TIP]
This is a template. The default signal is a Triple-Trigger strategy combining Binance momentum, NOFX institutional flow, and L2 Wall detection.
Remix it with alternative signals like technical indicators (RSI/MACD), different CEX feeds, or custom LLM-based sentiment.
The skill handles all the plumbing (market pre-caching, Simmer execution, budget safeguards). Your agent provides the alpha.
A professional-grade quantitative execution skill for Polymarket's 5-minute binary options.
🌟 Core Strategy: Triple-Trigger Sniper
This skill abandons naïve price-breakout logic. Every trade decision requires three independent confirmations:
1. Momentum & Pin Bar Filter (5m Candles)
- Measures the real momentum of the previous closed 5-minute candle on Binance.
- Pin Bar Rejection: If the counter-directional wick exceeds
max_pin_bar_tail_pct (default 30%) of the full candle range, the signal is blocked as a likely exhaustion trap.
min_momentum_pct defaults to 0.01% — acting as a near-zero-threshold pass-through that relies on the shape filter for quality control.
2. NOFX Institutional Flow (300s Window)
- Uses the NOFX API to check the past 300 seconds of Open Interest (OI) and institutional Netflow.
- Trend trade: Momentum + OI increasing (> -2%) + net institutional inflow.
- Reversion trade: Momentum + OI declining (< +2%) + net institutional outflow.
3. Binance L2 Verified Wall Detection
- Scans the Binance L2 order book for large price walls above
min_wall_usd (default $1,000,000) up to wall_scan_depth levels deep.
- Anti-Spoofing: When a wall is detected, the script waits 1.5s and checks again. Only a wall that survives both checks is considered a real barrier, filtering out high-frequency spoofing.
- Usage: Trend trades avoid walls; Reversion trades require a wall to bounce off.
4. Pre-Caching Radar (V8.10 Ignition)
- On every run, the script fetches all upcoming market IDs from the Simmer API and saves them to a local
fast_markets_cache.json.
- At market open, the Simmer API briefly hides the active market. The skill reads from its local cache to execute trades during this "API blackout", ensuring no opportunity is missed.