InfoMarkets

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_accumulation
  • smart_divergence
  • cluster_activity
  • momentum_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 data
  • top_cluster — requires wallet clustering
  • news_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 TypeTrigger
price_crossPrice crosses a user-defined threshold
new_marketNew market detected in sync
smart_signalAny signal fires above minimum strength

Selected components are provided under the MIT License.