APEX Runner: Regime Confluence Signal
APEX Runner: Regime Confluence Signal
7000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-08
updated
Provider
apexrunner.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8D0663BBb967ebF1c047405A888DDf865f3E8854",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "7000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "trading-signals",
"description": "Multi-coin market regime confluence signal across BTC, ETH, and SOL simultaneously. Returns dominant volatility regime, confluence score (1-3 coins agreeing), strongest pair, and recommended action with live Fear & Greed context. Strong confluence (3/3) = highest-conviction autonomous trading signal.",
"example": {
"cached_at": "2026-06-13T12:00:00+00:00",
"coin_regimes": {
"BTC": {
"confidence": 0.82,
"recommended_action": "BUY",
"regime": "RANGING"
},
"ETH": {
"confidence": 0.71,
"recommended_action": "BUY",
"regime": "RANGING"
},
"SOL": {
"confidence": 0.65,
"recommended_action": "HOLD",
"regime": "TRENDING"
}
},
"confluence_label": "MODERATE",
"confluence_score": 2,
"dominant_regime": "RANGING",
"fear_greed": 42,
"interpretation": "2/3 coins in RANGING regime — moderate confluence. F&G: 42. Action: ACCUMULATE",
"recommended_action": "ACCUMULATE",
"strongest_pair": "BTC"
},
"info": {
"input": {
"method": "GET",
"type": "http"
},
"output": {
"cached_at": "ISO8601 timestamp",
"coin_regimes": "object — keyed by coin, each with regime (RANGING/TRENDING/CRISIS/RECOVERY), confidence 0-1, recommended_action",
"confluence_label": "string — WEAK / MODERATE / STRONG",
"confluence_score": "int — number of coins in dominant regime (1-3)",
"dominant_regime": "string — regime held by the most coins",
"example": {
"cached_at": "2026-06-13T12:00:00+00:00",
"coin_regimes": {
"BTC": {
"confidence": 0.82,
"recommended_action": "BUY",
"regime": "RANGING"
},
"ETH": {
"confidence": 0.71,
"recommended_action": "BUY",
"regime": "RANGING"
},
"SOL": {
"confidence": 0.65,
"recommended_action": "HOLD",
"regime": "TRENDING"
}
},
"confluence_label": "MODERATE",
"confluence_score": 2,
"dominant_regime": "RANGING",
"fear_greed": 42,
"interpretation": "2/3 coins in RANGING regime — moderate confluence. F&G: 42. Action: ACCUMULATE",
"recommended_action": "ACCUMULATE",
"strongest_pair": "BTC"
},
"fear_greed": "int — current F&G value",
"interpretation": "string — plain-English confluence summary",
"recommended_action": "string — BUY / ACCUMULATE / DCA / HOLD / WAIT",
"strongest_pair": "string — coin with highest confidence in dominant regime",
"type": "json"
},
"why_apex": {
"live_system": "APEX trades real capital 24/7 on Kraken, Coinbase, and Hyperliquid simultaneously",
"multi_exchange": "Cross-exchange data synthesis unavailable from any single-venue provider",
"not_backtested": "All signals derived from live order flow — 2,988 real grid trades, 82.8% win rate across Kraken, Coinbase, and Hyperliquid",
"self_evolving": "AI evolution engine runs nightly, signal logic improves from real outcomes"
}
},
"name": "APEX Regime Confluence",
"outputSchema": {
"cached_at": "string",
"coin_regimes": "object",
"confluence_label": "string",
"confluence_score": "int",
"dominant_regime": "string",
"fear_greed": "int",
"interpretation": "string",
"recommended_action": "string",
"strongest_pair": "string"
},
"schema": {
"properties": {
"input": {
"properties": {
"queryParams": {
"properties": {},
"type": "object"
}
},
"required": [
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"_apex": {
"properties": {
"evolution_runs": {
"type": "integer"
},
"instance": {
"type": "string"
},
"live_capital_deployed": {
"type": "boolean"
},
"live_trading": {
"type": "boolean"
},
"signal": {
"type": "string"
},
"signal_hash": {
"type": "string"
},
"source": {
"type": "string"
},
"trades_backing_signal": {
"type": "integer"
},
"verify_at": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
},
"cached_at": {
"type": "string"
},
"coin_regimes": {
"additionalProperties": {
"properties": {
"confidence": {
"type": "number"
},
"regime": {
"type": "string"
}
},
"type": "object"
},
"type": "object"
},
"confluence_label": {
"type": "string"
},
"confluence_score": {
"type": "integer"
},
"dominant_regime": {
"type": "string"
},
"fear_greed": {
"type": "integer"
},
"interpretation": {
"type": "string"
},
"recommended_action": {
"type": "string"
},
"strongest_pair": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"version": "1.0.0"
}
}Use it
curl
curl "https://apexrunner.ai/signals/regime-confluence" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://apexrunner.ai/signals/regime-confluence");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://apexrunner.ai/signals/regime-confluence")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/12531.json, and this resource appears in /discovery/resources and /discovery/search.