APEX Runner: Dca Reentry Gate Signal
APEX Runner: Dca Reentry Gate 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": "Full APEX DCA reentry gate for autonomous BTC accumulation — exposes the live gate logic from APEX Runner: Fear & Greed index ≤20, RSI <45, BTC price below 20-period SMA, plus cooldown check. Returns OPEN/CLOSED with per-condition scorecard, gap-to-threshold values, and estimated 4h-sessions until gate opens.",
"example": {
"btc_price": 103200,
"cached_at": "2026-06-13T12:00:00+00:00",
"cooldown": {
"active": false,
"cooldown_until": null
},
"estimated_sessions_until_open": 17,
"gate_status": "CLOSED",
"gates": {
"fear_greed": {
"pass": false,
"threshold": "≤20",
"value": 45
},
"price_sma20": {
"pass": false,
"threshold": "<0%",
"value": "+2.30%"
},
"rsi": {
"pass": true,
"threshold": "<45",
"value": 42.1
}
},
"gates_passed": 1,
"interpretation": "DCA gate CLOSED — 1/3 conditions met. F&G 45/20, RSI 42.1/45, price +2.30% vs SMA20"
},
"info": {
"input": {
"method": "GET",
"type": "http"
},
"output": {
"btc_price": "float — current BTC price in USD",
"cached_at": "ISO8601 timestamp",
"cooldown": "object — active bool and cooldown_until ISO timestamp",
"estimated_sessions_until_open": "int — rough 4h-session estimate until F&G reaches threshold",
"example": {
"btc_price": 103200,
"cached_at": "2026-06-13T12:00:00+00:00",
"cooldown": {
"active": false,
"cooldown_until": null
},
"estimated_sessions_until_open": 17,
"gate_status": "CLOSED",
"gates": {
"fear_greed": {
"gap": 25,
"pass": false,
"threshold": "≤20",
"value": 45
},
"price_sma20": {
"pass": false,
"threshold": "<0%",
"value": "+2.30%"
},
"rsi": {
"gap": -2.9,
"pass": true,
"threshold": "<45",
"value": 42.1
}
},
"gates_passed": 1,
"interpretation": "DCA gate CLOSED — 1/3 conditions met. F&G 45/20, RSI 42.1/45, price +2.30% vs SMA20"
},
"gate_status": "string — OPEN or CLOSED",
"gates": "object — per-gate breakdown with pass status, value, threshold, and gap",
"gates_passed": "int — number of conditions passing (0-3)",
"interpretation": "string — plain-English gate summary",
"type": "json"
}
},
"name": "APEX DCA Reentry Gate",
"outputSchema": {
"btc_price": "float",
"cached_at": "string",
"cooldown": "object",
"estimated_sessions_until_open": "int",
"gate_status": "string",
"gates": "object",
"gates_passed": "int",
"interpretation": "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"
},
"blocking_gates": {
"items": {
"type": "string"
},
"type": "array"
},
"btc_price": {
"type": "number"
},
"cached_at": {
"type": "string"
},
"cooldown": {
"properties": {
"active": {
"type": "boolean"
},
"cooldown_until": {
"nullable": true
}
},
"type": "object"
},
"estimated_sessions_until_fg_gate": {
"type": "integer"
},
"gate_status": {
"type": "string"
},
"gates": {
"properties": {
"fear_greed": {
"properties": {
"gap": {
"type": "integer"
},
"pass": {
"type": "boolean"
},
"threshold": {
"type": "string"
},
"value": {
"type": "integer"
}
},
"type": "object"
},
"price_sma20": {
"properties": {
"pass": {
"type": "boolean"
},
"threshold": {
"type": "string"
},
"value": {
"type": "string"
}
},
"type": "object"
},
"rsi": {
"properties": {
"gap": {
"type": "number"
},
"pass": {
"type": "boolean"
},
"threshold": {
"type": "string"
},
"value": {
"type": "number"
}
},
"type": "object"
}
},
"type": "object"
},
"gates_passed": {
"type": "integer"
},
"interpretation": {
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}
},
"type": "object"
},
"version": "1.0.0"
}
}Use it
curl
curl "https://apexrunner.ai/signals/dca-reentry-gate" # -> 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/dca-reentry-gate");
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/dca-reentry-gate")
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/12534.json, and this resource appears in /discovery/resources and /discovery/search.