@vizzor/cli 0.12.5 → 0.13.1

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 CHANGED
@@ -54,18 +54,21 @@ ETH at $2,112 | Bullish | Confidence: Medium-High
54
54
 
55
55
  **Any tradable crypto asset.** BTC, ETH, SOL, meme coins, new DEX launches, tokens by contract address — if it has a price, Vizzor can analyze it.
56
56
 
57
- - **Price predictions** — bull/bear/likely targets across 9 timeframes (5m to 3 months)
58
- - **ChronoVisor engine** — mathematical prediction system using Bayesian inference, certainty-factor algebra, first-order logic rules, and meta-reasoning with 6 independent signal sources
57
+ - **Price predictions** — bull/bear/likely targets across 9 timeframes (5m to 3 months), batch multi-horizon predictions in a single call
58
+ - **ChronoVisor engine** — mathematical prediction system using Bayesian inference, certainty-factor algebra with weak signal dampening, first-order logic rules (17 base + 7 scalping), meta-reasoning, and continuous weight learning with feedback loops
59
+ - **Alert-hit notifications** — toast banners for price target hits with training feedback (accuracy, streak, weight updates), ESC-to-dismiss, auto-dismiss after 5s
59
60
  - **Microstructure analysis** — market structure, FVGs, VWAP, volume delta, liquidation map, order book depth, S/R zones, squeeze detection
60
61
  - **Token security audits** — honeypot detection, tax analysis, mint/blacklist flags, rug pull indicators
61
62
  - **On-chain forensics** — wallet analysis, whale tracking, holder concentration, token flow patterns
62
63
  - **Blockchain fundamentals** — TVL, protocol revenue, developer activity, governance metrics, staking yields
63
64
  - **Derivatives positioning** — funding rates, open interest, long/short ratios from Binance Futures
64
- - **Prediction markets** — integrates Gamma protocol data for market-implied probabilities
65
+ - **Prediction markets** — integrates Gamma and Polymarket data for market-implied probabilities
66
+ - **Polymarket edge scanning** — compare ChronoVisor predictions against Polymarket odds, detect mispricings, execute trades via CLOB API
67
+ - **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
68
  - **Sentiment analysis** — Fear & Greed Index, news sentiment, buy/sell transaction ratios
66
69
  - **Trending discovery** — what tokens are moving right now across DexScreener and CoinGecko
67
70
  - **ICO tracking** — upcoming launches, fundraising rounds, investor data
68
- - **Notifications & alerts** — price alerts, prediction tracking, interactive alerts panel with detail views
71
+ - **Notifications & alerts** — price alerts for all prediction types (directional + sideways breakout), prediction tracking, interactive alerts panel with dismiss-on-review for resolved predictions
69
72
  - **Autonomous agents** — set-and-forget trading agents with paper/live execution
70
73
  - **DeFi protocols** — Aave V3, Lido integrations with health monitoring and yield orchestration
71
74
 
@@ -108,6 +111,7 @@ Works on **macOS**, **Linux**, and **Windows**.
108
111
  | `CRYPTOPANIC_API_KEY` | No | Free tier | News with sentiment |
109
112
  | `DISCORD_TOKEN` | No | Free | Discord bot |
110
113
  | `TELEGRAM_BOT_TOKEN` | No | Free | Telegram bot |
114
+ | `POLYMARKET_PRIVATE_KEY` | No | N/A | Polymarket CLOB trading (edge execution) |
111
115
 
112
116
  **No API key at all?** Use Ollama with a local model — fully offline predictions (lower quality but free).
113
117
 
@@ -230,7 +234,7 @@ Launch with `vizzor`. Interactive chat with live price ticker, streaming respons
230
234
  | `/config` | Show config |
231
235
  | `/help` | Command reference |
232
236
 
233
- **Alerts Panel:** Type `/alerts` to open the interactive panel. Use **Up/Down** to navigate predictions and alerts, **Enter** to view full details (entry price, confidence, outcome, signal snapshot), **Escape** to close.
237
+ **Alerts Panel:** Type `/alerts` to open the interactive panel. Use **Up/Down** to navigate predictions and alerts, **Enter** to view full details (entry price, confidence, outcome, signal snapshot), **Escape** to close. Resolved predictions (HIT/MISS) are dismissed from the list when you exit their detail view. Pending predictions appear first; resolved predictions sort below them.
234
238
 
235
239
  ### CLI Commands
236
240
 
@@ -321,6 +325,7 @@ Autonomous prediction agents that run a continuous **think → analyze → decid
321
325
  | **Trend-Following** | EMA Crossover + OBV + Fear & Greed | Swing trades |
322
326
  | **ML-Adaptive** | All TA + ML regime + ChronoVisor | Adaptive, all conditions |
323
327
  | **ChronoVisor** | 6-signal Bayesian engine + FOL rules + meta-reasoning | Multi-timeframe predictions |
328
+ | **Polymarket-Arbitrage** | ChronoVisor vs Polymarket odds | Prediction market edge trading |
324
329
 
325
330
  ### Safety Pipeline (Live Trading)
326
331
 
@@ -389,6 +394,7 @@ Requires the API server running (`vizzor api start`).
389
394
  - **Agents** — create, monitor, start/stop agents with paper/live mode, portfolio chart, trade history
390
395
  - **Portfolio** — positions, trade history, P&L metrics
391
396
  - **Notifications** — real-time notification panel with prediction detail modals, price alert management, desktop push notifications
397
+ - **Polymarket** — edge scanner comparing ChronoVisor vs market odds, opportunity cards, position tracking, trade execution
392
398
  - **Settings** — API keys and provider configuration
393
399
 
394
400
  ---
@@ -424,6 +430,9 @@ GET /v1/market/trenches # Trenches scanner
424
430
  GET /v1/chronovisor/:symbol # ChronoVisor prediction
425
431
  GET /v1/chronovisor/predictions # List all predictions
426
432
  GET /v1/chronovisor/accuracy # Prediction accuracy metrics
433
+ GET /v1/polymarket/opportunities/:symbol # Edge opportunities for symbol
434
+ GET /v1/polymarket/positions # Open orders + recent trades
435
+ POST /v1/polymarket/trade # Place trade on market
427
436
  GET /v1/notifications # List notifications
428
437
  GET /v1/notifications/:id # Get notification detail
429
438
  POST /v1/notifications/mark-read # Mark all as read
@@ -498,6 +507,11 @@ cacheTtl:
498
507
  marketData: 300
499
508
  walletData: 600
500
509
  contractCode: 86400
510
+
511
+ polymarket:
512
+ enabled: true
513
+ defaultSize: 10 # USD per trade
514
+ orderType: limit
501
515
  ```
502
516
 
503
517
  ### AI Provider Comparison