{
  "x402Version": 2,
  "id": 12534,
  "slug": "12534",
  "resource": "https://apexrunner.ai/signals/dca-reentry-gate",
  "description": "APEX Runner: Dca Reentry Gate Signal",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x8D0663BBb967ebF1c047405A888DDf865f3E8854",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "7000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "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"
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "apexrunner.ai",
  "lastUpdated": "2026-09-08T23:42:05.556Z",
  "quality": {
    "calls30d": 1,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-08T23:42:05.398Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "apexrunner.ai",
    "manifest_name": "apexrunner.ai",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}