# APEX Runner DCA Reentry Gate Signal

> APEX Runner DCA Reentry Gate Signal is a paid API for AI agents from apexrunner.ai, paid per call via x402, $0.007/call, status unknown (last checked 2026-09-14).

Returns a signal indicating optimal reentry points for dollar-cost averaging (DCA) strategies based on market gate conditions

## Facts

- Endpoint: GET https://apexrunner.ai/signals/dca-reentry-gate
- Price: $0.007/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apex-runner-dca-reentry-gate-signal-557a00ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mIFtuMBy7xjyrosjlKHGS

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability apex-runner-dca-reentry-gate-signal-557a00ff
```

Example prompt: Check the APEX Runner DCA reentry gate signal for BTC/USDC right now — I want to know if the gate is open and whether it's a good time to resume my dollar-cost averaging buys.

## When to prefer this

Use this endpoint when you need a dedicated, pre-computed signal specifically designed for DCA reentry timing rather than building your own logic. Prefer this over generic fear/greed or regime signals when the specific decision is whether to resume or trigger a DCA accumulation cycle.

## Known failure modes

- Unsupported trading pair returns an error or empty signal
- Market data unavailability causes stale or failed signal computation
- Payment of $2 USDC not confirmed results in 402 Payment Required response
- Invalid or missing asset parameter returns 400 Bad Request
- Rate limiting may return 429 Too Many Requests if called too frequently

## How this service works

APEX Runner: Dca Reentry Gate Signal

## Output

Returns a structured signal indicating whether the DCA reentry gate is open or closed, along with supporting score or condition data that helps determine if current market conditions are favorable for resuming DCA purchases.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "gates": "object — per-gate breakdown with pass status, value, threshold, and gap",
 "example": {
  "gates": {
   "rsi": {
    "gap": -2.9,
    "pass": true,
    "value": 42.1,
    "threshold": "<45"
   },
   "fear_greed": {
    "gap": 25,
    "pass": false,
    "value": 45,
    "threshold": "≤20"
   },
   "price_sma20": {
    "pass": false,
    "value": "+2.30%",
    "threshold": "<0%"
   }
  },
  "cooldown": {
   "active": false,
   "cooldown_until": null
  },
  "btc_price": 103200,
  "cached_at": "2026-06-13T12:00:00+00:00",
  "gate_status": "CLOSED",
  "gates_passed": 1,
  "interpretation": "DCA gate CLOSED — 1/3 conditions met. F&G 45/20, RSI 42.1/45, price +2.30% vs SMA20",
  "estimated_sessions_until_open": 17
 },
 "cooldown": "object — active bool and cooldown_until ISO timestamp",
 "btc_price": "float — current BTC price in USD",
 "cached_at": "ISO8601 timestamp",
 "gate_status": "string — OPEN or CLOSED",
 "gates_passed": "int — number of conditions passing (0-3)",
 "interpretation": "string — plain-English gate summary",
 "estimated_sessions_until_open": "int — rough 4h-session estimate until F&G reaches threshold"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apex-runner-dca-reentry-gate-signal-557a00ff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apexrunner.ai](https://www.zero.xyz/host/apexrunner.ai/llms.txt)
