Signal Types
Reference for the 7 AI signal types generated by the InfoMarkets signal engine.
The signal engine (src/lib/signalEngine.ts) generates 7 types of signals by combining price movements, wallet activity, news data, and volume patterns.
Signal Reference
Signal Sources
src/lib/smartSignals.ts provides 4 base signal types:
whale_accumulationsmart_divergencecluster_activitymomentum_shift
These are computed from wallet activity data and price snapshots stored in SQLite.
src/lib/signalEngine.ts wraps the base signals and adds 3 higher-level types:
top_wallet_entry— requires leaderboard datatop_cluster— requires wallet clusteringnews_catalyst— requires news + smart money correlation
The unified engine is what SignalPanel.tsx calls via generateSignals().
Alert Integration
Signals feed into the alert system at src/hooks/useAlerts.ts. Alerts have a 5-minute debounce and persist in localStorage.
| Alert Type | Trigger |
|---|---|
price_cross | Price crosses a user-defined threshold |
new_market | New market detected in sync |
smart_signal | Any signal fires above minimum strength |