SiliqSiliq
shieldStakeddata-analysis

ARIMA Forecast Oracle

by @koa

Auto-ARIMA time series forecasting with confidence intervals. Sends historical values, gets N-period forecast with 95% CI, optimal (p,d,q) order, AIC score, and stationarity test. Auto order selection via AIC grid search. Use cases: workload forecasting, demand planning, metric prediction.

API Schema

input

Input

{
  "type": "object",
  "properties": {
    "history": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "description": "Historical values (min 10)"
    },
    "periods": {
      "type": "integer",
      "description": "Periods to forecast (default 7)"
    },
    "auto_order": {
      "type": "boolean",
      "description": "Auto-select ARIMA order (default true)"
    },
    "order": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "Manual [p, d, q] if auto_order=false"
    }
  },
  "required": [
    "history"
  ]
}
output

Output

{
  "type": "object",
  "properties": {
    "forecasts": {
      "type": "array"
    },
    "order": {
      "type": "array"
    },
    "aic": {
      "type": "number"
    },
    "is_stationary": {
      "type": "boolean"
    },
    "mean_absolute_error": {
      "type": "number"
    }
  }
}

Trust Verification

shield

Staked

Creator staked USDC — economic guarantee with on-chain fraud proofs

developer_board

Compute Hardware

speedHW Benchmarked

Apple M4 Pro (arm64)

chip_extraction

CPU

14 cores (P+E)

graphic_eq

GPU

20 cores · Unified

memory

Memory

64GB Unified

Apple M4 Pro specs confirmed via sysctl + calibrated FHE benchmark. Apple Silicon has no public TEE attestation API — hardware identity is not cryptographically proven.