chanalyse πŸ• snapshot 2026-06-18 08:49 UTC Β· refreshes ~3h

πŸ“ˆ Market-intelligence signals

What this is & how to consume it

A GDELT-style sentiment + buzz feed over every company, ticker, crypto and commodity mentioned across the scraped boards. For each entity we compute, per time-window:

  • tone (βˆ’100…+100) β€” VADER sentiment of the discussion, mapped to a bullish/bearish axis.
  • mention volume + a z-score vs the entity's own baseline (abnormal-attention signal).
  • tone momentum β€” is the mood improving or souring.
  • tone dispersion β€” how contested the mood is (high = a fight).
  • buzz_index (0–100) and a composite signal label, with a confidence.

⚠️ This is anonymous imageboard chatter β€” noisy, manipulable, and NOT financial advice. Treat it as one weak, contrarian-leaning sentiment input, weighted by the confidence and tone_dispersion fields.

Window: 24h 7d 30d Board: export: ⬇ CSV ⬇ JSON

🟒 Most bullish (positive tone)

EntityCatToneBuzznsrc

πŸ”΄ Most bearish (negative tone)

EntityCatToneBuzznsrc

πŸ”₯ Highest buzz (composite heat)

EntityCatBuzzSignalzsrc

πŸ“‘ Volume spikes (abnormal attention)

EntityCatz-scoreToneSignalsrc

πŸ”Ž Inspect an entity timeline

⬇ timeline CSV ⬇ JSON

πŸ“Š Mentions over time

Mention count per time bucket (bars). Spikes = abnormal attention.

πŸ“ˆ Sentiment over time

Average tone per time bucket (βˆ’100 bearish … +100 bullish); the dashed line is the neutral zero baseline.

πŸ”Œ Signals API β€” for trading bots, notebooks & dashboards

Stable, read-only JSON. No auth, no key, CORS-enabled. Base URL: https://qalarc.com/chanalyse. The window parameter accepts 24h, 7d, 30d, or any <N>h / <N>d. Optional board= (e.g. biz) and category= (crypto/ticker/company/commodity).

Endpoints

EndpointReturns
GET /api/v1/signals?window=24hRanked scan of every market entity (lean snapshot, no time series). Add &category=crypto to filter.
GET /api/v1/signals/summary?window=24hLeaderboards: most bullish / bearish / highest buzz / volume spikes.
GET /api/v1/signals/{entity}?window=7dOne entity in full, including axis, volume_series & tone_series (the timeline charted above).
GET /api/v1/signals.csv?window=30dThe whole scan as CSV (spreadsheet-friendly).

Copy-paste examples

# latest crypto signals
curl "https://qalarc.com/chanalyse/api/v1/signals?window=24h&category=crypto"

# one entity's full timeline (for charting)
curl "https://qalarc.com/chanalyse/api/v1/signals/bitcoin?window=7d"

# the bullish/bearish/buzz leaderboards
curl "https://qalarc.com/chanalyse/api/v1/signals/summary?window=30d"

Python: requests.get("https://qalarc.com/chanalyse/api/v1/signals/gamestop?window=7d").json()

Every signal object carries

FieldMeaning
tone_avgaverage sentiment, βˆ’100 (bearish) … +100 (bullish)
mention_zscorehow abnormal current volume is vs the entity's baseline
tone_momentumrecent tone βˆ’ earlier tone (mood improving/souring)
tone_dispersionhow contested the mood is (high = a fight)
buzz_index0–100 composite heat (volume z + size + momentum)
signallabel: bullish_spike / bearish_spike / buzz_spike / warming / cooling / quiet
confidence0–1 (more posters, more buckets, lower dispersion β†’ higher)
boards, mention_count, categorywhere it was discussed, how much, and its type

Live example: /api/v1/signals/bitcoin?window=30d. ⚠️ Imageboard-derived sentiment β€” noisy, manipulable, not financial advice.