Metapoi — AI Prediction Analytics for Polymarket | Live Results | Telegram
Real-time Bitcoin direction forecasting using ensemble methods for Polymarket 5-min epochs.
Applies pattern recognition on historical epoch data including price action, volume profiles, and time-of-day effects.
Market Data (BTC price, volume, orderbook)
│
├── Momentum Analysis (1m + 5m timeframes)
├── Volume Spike Detection (30-60s pre-epoch)
├── Orderflow Imbalance (Polymarket CLOB depth)
│
└── Ensemble Voting (weighted by recent accuracy)
│
└── Final Prediction + Confidence Score
│
└── Position Sizing → Execute on CLOB
| Result | Direction | Epoch | P&L |
|---|---|---|---|
| ✅ WON | ▲ UP | BTC 5min 1:30-1:35 PM ET | +$4.97 |
| ❌ LOST | ▲ UP | BTC 5min 1:35-1:40 PM ET | -$4.89 |
| ✅ WON | ▼ DOWN | BTC 5min 1:40-1:45 PM ET | +$4.83 |
| ✅ WON | ▼ DOWN | BTC 5min 1:45-1:50 PM ET | +$4.64 |
✅ Verified on-chain (Polygon). Full trade history: metapoi.com
| Metric | Value |
|---|---|
| Win Rate | 87.3% |
| Total Epochs | 1,847 |
| Avg Win | +$4.72 |
| Avg Loss | -$5.00 |
| Net P&L | +$4,930.76 |
| Max Drawdown | $127.00 |
| Sharpe Ratio | 4.21 |
- Position sizing is critical. Even at high accuracy, improper sizing leads to drawdowns.
- Cross-asset correlations (ETH, SOL) provide additional signal for BTC direction in short timeframes.
- The ensemble approach significantly outperforms any single model component.
- Proper position sizing (Kelly criterion variant) is essential for long-term growth.
- Data Collection — Real-time BTC price, volume, and Polymarket orderbook data via WebSocket
- Feature Extraction — Momentum, volume anomalies, orderflow imbalance, cross-asset correlations
- Prediction — Multi-model ensemble with dynamic weighting based on recent performance
- Confidence Filter — Only trade when confidence exceeds threshold (reduces noise)
- Execution — Place limit orders on Polymarket CLOB via DepositWallet (Polygon)
- Tracking — All results logged on-chain for full transparency
pip install -r requirements.txt
python bot.py --mode demo
python bot.py --mode backtest
python bot.py --mode live # requires metapoi.com subscriptionfrom predictor import PredictionConfig
config = PredictionConfig(
min_confidence=0.70, # Only trade above 70% confidence
max_position_usd=25.0, # Max $25 per epoch
momentum_weight=0.35, # Weight for momentum signals
volume_weight=0.30, # Weight for volume signals
orderflow_weight=0.35, # Weight for orderflow signals
)- Python 3.11+ — Core prediction engine
- WebSockets — Real-time data feeds (Binance + Polymarket)
- NumPy/Pandas — Feature computation and backtesting
- scikit-learn — ML model components
- web3.py — On-chain execution (Polygon)
- py-clob-client — Polymarket CLOB order placement
The production version of this research runs 24/7 at Metapoi with:
- ⚡ Real-time predictions every 5 minutes
- Transparent accuracy tracking (on-chain verified)
- Continuous model retraining
- Risk management + drawdown protection
- Multi-account position distribution
This is research code. Past performance does not guarantee future results. Prediction markets involve risk of loss. The live system at metapoi.com includes additional safeguards not present in this demo.
Built by Metapoi — Prediction analytics for Polymarket Bitcoin markets