← Docs
Trading Signals API
Updated: 2026-01-17 | Version: 3.1.0
Market bias detection, trading radar, and alpha signals.
Disclaimer: Data infrastructure only. NOT financial advice. No trading recommendations.
Authentication
Required: X-API-Key: YOUR_KEY
Endpoints
| Endpoint | Description |
/api/v1/feeds/trading/radar | Market radar |
/api/v1/feeds/trading/bias | Market bias |
/api/v1/feeds/trading/tokens | Token signals |
/api/v1/feeds/trading/alpha | Alpha signals |
Examples
curl -H "X-API-Key: YOUR_KEY" \
https://feedoracle.io/api/v1/feeds/trading/bias
Response
{
"bias": "LONG",
"confidence": 0.85,
"symbol": "BTC",
"timeframe": "4h"
}
Bias Values
| Bias | Meaning |
| LONG | Bullish signal |
| SHORT | Bearish signal |
| NEUTRAL | No direction |
Errors
| Code | Meaning |
| 401 | Invalid API key |
| 429 | Rate limit exceeded |
Data Sources
Internal ML models - Trained on historical data
Exchange APIs - Real-time orderbook data
← Back