Raw votes from all 12 oracle signals with per-signal confidence and consensus score.
Each oracle is a separate real-world data source: funding rate, open interest,
long/short ratio, Fear & Greed index, macro regime (FRED), aviation volume,
TSA travel demand, Polymarket crowd, options flow, congressional trading,
CLOB order book depth, and Binance 24h cumulative delta. Each votes
BUY (+1), SELL (-1), or NEUTRAL (0) independently.
Use this for deep analysis, signal attribution, or debugging a BUY/SELL/HOLD
decision. For a consolidated action, call get_agent_signal() instead.
Response example:
{
"consensus_score": 8,
"max_score": 12,
"action": "BUY",
"win_rate": 0.62,
"oracles": [
{"name": "funding_rate", "vote": 1, "confidence": 0.85},
{"name": "long_short_ratio", "vote": 1, "confidence": 0.70},
{"name": "fear_greed", "vote": 0, "confidence": 0.50},
{"name": "macro_regime", "vote": 1, "confidence": 0.80},
{"name": "binance_delta", "vote": 1, "confidence": 0.75}
]
}