Node ReferenceData
DefiTheOdds
Enriched OHLCV with 40+ indicators and ML market regime scores via DefiTheOdds.
DefiTheOdds provides enriched candle data for crypto assets - OHLCV augmented with 40+ technical indicators and ML-driven market regime scores. The node supports hourly and daily timeframes.
Prerequisites
- DefiTheOdds API key - free tier available
- Add as a credential in Credentials
Operations
| Operation | Description | Key inputs |
|---|---|---|
| getHourly | Get hourly candle data | ticker, candles |
| getDaily | Get daily candle data | ticker, candles |
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
| ticker | string | Yes | Asset ticker (e.g., SOL, BTC) |
| candles | number | No | Number of candles to return (default: varies, capped at 1000) |
Output
{
"success": true,
"operation": "getHourly",
"ticker": "SOL",
"data": [
{ "timestamp": 1712000000, "open": 149.5, "high": 151.2, "low": 148.8, "close": 150.3 }
]
}Common use cases
- Feed candle data into AI nodes for technical analysis
- Compare DefiTheOdds signals with Birdeye/CoinGecko prices
- Build alerts on candle patterns
Next steps
- Birdeye - token price analytics
- OpenRouter - AI-powered analysis
