Time Series Forecast

Predict
Price: $0.05/callLatency: <3msComplexity: O(n * s)

Quick scenarios

Forecast 6 periods ahead using Holt-Winters on monthly sales data with quarterly seasonality.

Click "Run Algorithm" to see results
cURL
curl -X POST https://oraclaw-api.onrender.com/api/v1/predict/forecast \
  -H "Content-Type: application/json" \
  -d '{"data":[100,120,130,115,105,125,140,120,110,130,145,125,115,135,150,130],"steps":6,"method":"holt-winters","seasonLength":4}'

Input Schema

data: number[] (historical values)
steps: number (forecast horizon)
method: 'arima' | 'holt-winters'
seasonLength: number (for Holt-Winters)

Output Fields

forecastconfidencemodelmethod