# Kronos Signals DOGE Price Direction Forecast

> Kronos Signals DOGE Price Direction Forecast is a paid API for AI agents from kronossignals.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a composite technical-indicator-based directional forecast (up probability, price range) for Dogecoin (DOGE) over 1h, 4h, or 24h horizons

## Facts

- Endpoint: GET https://kronossignals.com/api/v1/forecast/doge
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kronos-signals-doge-price-direction-forecast-02fc8c73
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QcXXnnRhXdGBrozt55nIQ

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 kronos-signals-doge-price-direction-forecast-02fc8c73
```

Example prompt: Can you pull the Kronos Signals DOGE forecast for the next 4 hours — I want to see the up probability and expected price range?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call ($0.001 USDC) Dogecoin-specific directional signal derived from classic technical indicators (EMA, RSI, MACD, ATR) across short time horizons. Prefer it for lightweight DOGE momentum checks when you do not need full ML model accuracy or multi-asset screening. Note: the beta flag means this is a heuristic signal only — do not use it for high-stakes automated trading decisions.

## Known failure modes

- Invalid horizon parameter (not 1h, 4h, or 24h) — returns 400 or validation error
- Payment not processed via x402 on Base USDC — returns 402 Payment Required
- Binance klines data unavailable or rate-limited — may return 503 or stale signal
- Beta flag present: ML model not deployed for DOGE, so signal is heuristic-only with unverified accuracy
- Network timeout reaching kronossignals.com — returns 504 or connection error

## How this service works

Dogecoin (DOGE) price direction forecast. Kronos-base (60-path Monte-Carlo) ML model, cached ~20 min — switched from composite 2026-07-10. Measured on predictions actually served: 62% directional over 3,300+ scored DOGE forecasts — above our ~54% all-asset headline; verify per-asset at /api/stats (beta_accuracy). Falls back to the composite heuristic if the cache is briefly stale. Pay-per-call via x402 on Base USDC. Live scored track record at /api/stats — not a backtest.

## Output

Returns a JSON object containing: up_prob (float, probability DOGE price direction is up), range_low and range_high (estimated price range for the horizon), a beta flag indicating the ML model is not yet deployed for DOGE, and an accuracy_note warning that directional accuracy has not yet been established. Computed from EMA(20/50), RSI(14), MACD(12,26,9), and ATR(14) on Binance kline data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "horizon": {
       "enum": [
        "1h",
        "4h",
        "24h"
       ],
       "type": "string",
       "default": "1h",
       "description": "Forecast horizon: 1h = 1-hour candles, 4h = 4-hour candles, 24h = daily candles"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "beta": true,
  "asset": "DOGE-USD",
  "model": "kronos-signal-composite-v2 (fallback)",
  "price": {
   "atr": 0.004,
   "close": 0.18
  },
  "cached": true,
  "source": "Binance",
  "horizon": "1h",
  "forecast": {
   "up_prob": 0.55,
   "quantiles": null,
   "range_low": 0.174,
   "confidence": 0.55,
   "range_high": 0.186,
   "horizon_bars": 1,
   "expected_close": null,
   "pred_volatility": null
  },
  "disclaimer": "Beta composite forecast for DOGE-USD. Informational only, not financial advice.",
  "model_type": "composite",
  "generated_at": "2026-07-03T10:00:00.000Z",
  "accuracy_note": "Beta: composite model, directional accuracy not yet established for this asset — priced at the $0.001 beta tier.",
  "cache_age_seconds": 180
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kronos-signals-doge-price-direction-forecast-02fc8c73/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kronossignals.com](https://www.zero.xyz/host/kronossignals.com/llms.txt)
