@vizzor/cli 0.12.5 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -1
- package/dist/index.js +14636 -9412
- package/dist/index.js.map +1 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -61,7 +61,9 @@ ETH at $2,112 | Bullish | Confidence: Medium-High
|
|
|
61
61
|
- **On-chain forensics** — wallet analysis, whale tracking, holder concentration, token flow patterns
|
|
62
62
|
- **Blockchain fundamentals** — TVL, protocol revenue, developer activity, governance metrics, staking yields
|
|
63
63
|
- **Derivatives positioning** — funding rates, open interest, long/short ratios from Binance Futures
|
|
64
|
-
- **Prediction markets** — integrates Gamma
|
|
64
|
+
- **Prediction markets** — integrates Gamma and Polymarket data for market-implied probabilities
|
|
65
|
+
- **Polymarket edge scanning** — compare ChronoVisor predictions against Polymarket odds, detect mispricings, execute trades via CLOB API
|
|
66
|
+
- **Multi-exchange pricing** — aggregated prices from 15 exchanges (Binance, Coinbase, Kraken, OKX, Bybit, Gate.io, KuCoin, HTX, MEXC, Bitget, CoinGecko, CryptoCompare, DexScreener, GeckoTerminal, Jupiter) with VWAP/median aggregation and outlier detection
|
|
65
67
|
- **Sentiment analysis** — Fear & Greed Index, news sentiment, buy/sell transaction ratios
|
|
66
68
|
- **Trending discovery** — what tokens are moving right now across DexScreener and CoinGecko
|
|
67
69
|
- **ICO tracking** — upcoming launches, fundraising rounds, investor data
|
|
@@ -108,6 +110,7 @@ Works on **macOS**, **Linux**, and **Windows**.
|
|
|
108
110
|
| `CRYPTOPANIC_API_KEY` | No | Free tier | News with sentiment |
|
|
109
111
|
| `DISCORD_TOKEN` | No | Free | Discord bot |
|
|
110
112
|
| `TELEGRAM_BOT_TOKEN` | No | Free | Telegram bot |
|
|
113
|
+
| `POLYMARKET_PRIVATE_KEY` | No | N/A | Polymarket CLOB trading (edge execution) |
|
|
111
114
|
|
|
112
115
|
**No API key at all?** Use Ollama with a local model — fully offline predictions (lower quality but free).
|
|
113
116
|
|
|
@@ -321,6 +324,7 @@ Autonomous prediction agents that run a continuous **think → analyze → decid
|
|
|
321
324
|
| **Trend-Following** | EMA Crossover + OBV + Fear & Greed | Swing trades |
|
|
322
325
|
| **ML-Adaptive** | All TA + ML regime + ChronoVisor | Adaptive, all conditions |
|
|
323
326
|
| **ChronoVisor** | 6-signal Bayesian engine + FOL rules + meta-reasoning | Multi-timeframe predictions |
|
|
327
|
+
| **Polymarket-Arbitrage** | ChronoVisor vs Polymarket odds | Prediction market edge trading |
|
|
324
328
|
|
|
325
329
|
### Safety Pipeline (Live Trading)
|
|
326
330
|
|
|
@@ -389,6 +393,7 @@ Requires the API server running (`vizzor api start`).
|
|
|
389
393
|
- **Agents** — create, monitor, start/stop agents with paper/live mode, portfolio chart, trade history
|
|
390
394
|
- **Portfolio** — positions, trade history, P&L metrics
|
|
391
395
|
- **Notifications** — real-time notification panel with prediction detail modals, price alert management, desktop push notifications
|
|
396
|
+
- **Polymarket** — edge scanner comparing ChronoVisor vs market odds, opportunity cards, position tracking, trade execution
|
|
392
397
|
- **Settings** — API keys and provider configuration
|
|
393
398
|
|
|
394
399
|
---
|
|
@@ -424,6 +429,9 @@ GET /v1/market/trenches # Trenches scanner
|
|
|
424
429
|
GET /v1/chronovisor/:symbol # ChronoVisor prediction
|
|
425
430
|
GET /v1/chronovisor/predictions # List all predictions
|
|
426
431
|
GET /v1/chronovisor/accuracy # Prediction accuracy metrics
|
|
432
|
+
GET /v1/polymarket/opportunities/:symbol # Edge opportunities for symbol
|
|
433
|
+
GET /v1/polymarket/positions # Open orders + recent trades
|
|
434
|
+
POST /v1/polymarket/trade # Place trade on market
|
|
427
435
|
GET /v1/notifications # List notifications
|
|
428
436
|
GET /v1/notifications/:id # Get notification detail
|
|
429
437
|
POST /v1/notifications/mark-read # Mark all as read
|
|
@@ -498,6 +506,11 @@ cacheTtl:
|
|
|
498
506
|
marketData: 300
|
|
499
507
|
walletData: 600
|
|
500
508
|
contractCode: 86400
|
|
509
|
+
|
|
510
|
+
polymarket:
|
|
511
|
+
enabled: true
|
|
512
|
+
defaultSize: 10 # USD per trade
|
|
513
|
+
orderType: limit
|
|
501
514
|
```
|
|
502
515
|
|
|
503
516
|
### AI Provider Comparison
|