The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the SentimentFX listing page.
Full-stack crypto sentiment intelligence platform. Scrapes financial news headlines, scores them with FinBERT (a finance-specific transformer model), and correlates sentiment against live GBP crypto prices to surface predictive signals.
Live: sentimentfx.org · app.sentimentfx.org · developers.sentimentfx.org
positive_prob - negative_prob → range -1 to +1)| Layer | Technology |
|---|---|
| Backend | Python 3.11, FastAPI, SQLAlchemy |
| AI Model | FinBERT (ProsusAI/finbert) |
| Database | PostgreSQL |
| Auth | Supabase (email + Google OAuth) |
| Payments | Stripe (subscriptions + metered API billing) |
| Frontend | React, Recharts, Vite |
| Data | GNews API, feedparser (RSS), yfinance |
| Resend | |
| Deploy | Railway (backend), Vercel (frontend) |
Dashboard
Tickers: BTC, ETH, SOL, XRP, DOGE
Access tiers
Developer API (api.sentimentfx.org/v1/)
/v1/sentiment/{ticker} — scored headlines/v1/summary/{ticker} — daily averaged sentiment/v1/prices/{ticker} — daily GBP closing prices/v1/correlation/{ticker} — Pearson r across lag periodsAPScheduler runs scrape_all() on a cron trigger at the top of every hour.
Uses FinBERT's output probabilities directly:
Range: -1 (maximally negative) to +1 (maximally positive). Neutral headlines score near 0. This avoids the label × confidence collapse that zeros out neutral predictions.
Full docs at developers.sentimentfx.org
Procfile + nixpacks.toml. Starts with uvicorn app.main:app --host 0.0.0.0 --port $PORT.main.