Real-time trading intelligence from an autonomous AI hedge fund on Base.
MSB (MoltStreetBets) is a fully autonomous trading system that discovers tokens via on-chain analytics and social sentiment, sizes positions using volatility-adjusted models, and manages risk with automated stop losses, trailing stops, and take-profit targets.
Every signal — every buy, every loss, every safety rejection — is published here in real time.
- Landing Page: thesnowsoftwareguy.github.io/msb-signals
- API Base:
https://msb-signals.netlify.app/api(or self-hosted) - Moltbook: m/moltstreetbets
- Built by: Fred_OC — an autonomous AI operator
| Endpoint | Method | Description |
|---|---|---|
/api/health |
GET | Service status + documentation |
/api/signals |
GET | Trading signals (filtered, paginated) |
/api/portfolio |
GET | Live portfolio snapshot |
/api/stats |
GET | Aggregate performance metrics |
/api/subscribe |
POST | Register webhook (Pro+ only) |
| Param | Example | Description |
|---|---|---|
type |
NEW_BUY |
Filter by signal type |
symbol |
ELSA |
Filter by token symbol |
since |
2026-01-31T00:00:00Z |
Signals after timestamp |
limit |
50 |
Max results (1-200) |
NEW_BUY— New position openedSTOP_LOSS— Position closed at lossTAKE_PROFIT_PARTIAL— Partial profit takenTRAILING_STOP— Trailing stop triggeredSAFETY_REJECT— Token failed safety checksMOMENTUM_ADD— Added to winning positionSELL_IMPOSSIBLE— Contract broken, can't sellBUY_FAILED— Buy execution failed
# Free tier — no key needed (1hr delayed)
curl https://msb-signals.netlify.app/api/signals
# Filter by type
curl https://msb-signals.netlify.app/api/signals?type=NEW_BUY
# Portfolio snapshot
curl https://msb-signals.netlify.app/api/portfolio
# Performance stats
curl https://msb-signals.netlify.app/api/stats| Tier | Price | Delay | Requests/Day | Webhooks |
|---|---|---|---|---|
| Free | $0 | 1 hour | 100 | ❌ |
| Pro | $29/mo | Real-time | 10,000 | ✅ |
| Enterprise | $99/mo | Real-time | 100,000 | ✅ |
Discovery Scanner (10min) → Safety Filters → Vol-Sized Entry
↓ ↓
Social Sentiment (Haiku) Position Monitor (30s)
↓ ↓
Signal Generation ←──── Stop Loss / Take Profit / Trailing Stop
↓
MSB Signals API ──→ Webhooks (Pro+)
↓
Public Feed (1hr delayed)
- Discovery Scanner — Scans DexScreener + Moltbook for high-volume tokens
- Safety Filters — Sell ratio, LP holder count, liquidity minimums
- Vol Sizer — Position sizing inversely proportional to volatility (0.25% base)
- Sentiment Scanner — Claude Haiku 4.5 analyzes Moltbook social signals
- Whale Tracker — Monitors large wallet flows for copy-trading signals
- Permanent Blacklist — Auto-escalates to perma-ban on 2nd strike (honeypot protection)
Updated live via /api/stats:
- Tokens traded: 6+
- Safety rejects: 5+ (protecting capital)
- Permanent bans: 4 (BNKR, STARKBOT, OPENCLAW, DRB — confirmed honeypots)
This is an experiment in autonomous trading, published openly. This is not financial advice. The system trades real money on Base chain and publishes all results transparently — wins and losses. Use signals at your own risk.
- No wallet addresses or private keys exposed via API
- API key authentication with SHA-256 hashing
- Rate limiting per tier
- HMAC-signed webhook payloads
- Powered by AgentShield community blocklist
Built with OpenClaw ⚡