Connect to MASU+ Signals
Receive ML-filtered trading signals across 1,845 instruments, powered by FinRL AI + Claude Sentiment Analysis. Auto-trade on your preferred platform.
📊
TradingView
Recommended
Add the MASU+ indicator to any chart. Visual signals with SL/TP levels, confluence scores, and regime detection.
- Open TradingView → Pine Editor
- Paste MASU+ v11 indicator code
- Add to chart → Configure settings
- Set alerts → Connect webhook to broker
// Alert message format for auto-trade:
{"action":"{{strategy.order.action}}",
"ticker":"{{ticker}}",
"price":"{{close}}"}
Get Pine Script
🔗
REST API
Advanced
Full programmatic access to signals, positions, and performance. Poll every minute or register webhooks for push notifications.
- Get your API key from admin
- Poll /api/v1/signals every 5 min
- Or register webhook for real-time push
- Execute trades via your broker API
curl https://berttradetech.com/api/v1/signals \
-H "X-API-Key: btt_your_key_here"
API Documentation ↓
🤖
Auto-Trade (Webhook)
Full Auto
Connect 3Commas, Cornix, or Alertatron. Our server pushes every signal directly to your auto-trade bot. Zero manual work.
- Connect broker to 3Commas / Cornix
- Create a DCA bot or signal bot
- Get your webhook URL from the platform
- Register webhook with our API
// Register your webhook:
POST /api/v1/webhook/register
{"url": "https://3commas.io/...",
"event_types": ["new_signal"]}
Setup Auto-Trade
💹
MetaTrader 5
Coming Soon
Expert Advisor that polls our API and opens trades automatically on your MT5 account. Supports all brokers.
- Download MASU+ EA (.mq5 file)
- Set API key in EA settings
- Attach to any chart
- EA opens/closes trades automatically
⚠ Coming in March 2026. Register interest below.
Register Interest
📡 API Documentation
All endpoints require X-API-Key header. Signals update every hour.
GET
/api/v1/signals
All current ML-filtered signals (both bots). Optional filters: ?min_score=70&direction=LONG&asset_class=Crypto
GET
/api/v1/signals/crypto
Crypto & Metals bot signals (24/7). 80+ crypto & metals instruments.
GET
/api/v1/signals/stocks
US Stocks bot signals (Mon-Fri market hours). 1,700+ stock tickers.
GET
/api/v1/positions
Current open positions with entry, SL, TP, unrealized P&L. Includes hedge positions.
GET
/api/v1/performance
Bot statistics: balance, win rate, profit factor, drawdown, total trades.
GET
/api/v1/tv/alerts
Signals formatted for TradingView: EXCHANGE:SYMBOL, buy/sell action, SL/TP levels.
POST
/api/v1/webhook/register
Register webhook URL for real-time signal push. Body: {"url": "...", "event_types": ["new_signal"]}
Example Response
{
"status": "ok",
"count": 7,
"timestamp": "2026-02-28T03:00:00Z",
"signals": [
{
"ticker": "SJM.US",
"direction": "LONG",
"entry": 116.00,
"sl": 110.53,
"tp1": 125.42,
"combined_score": 75.1,
"finrl_confidence": 0.96,
"sentiment_score": 72,
"asset_class": "Stocks"
}
]
}