Live Dashboard

Interval: --
Current LMP
--
$/MWh
HOURLY AVG (EST.)
--/MWh
--/12 intervals
Site Load
--
MW
LRZ1 Load
--
MW
Load Forecast
--
MW

LMP Price History

LRZ1 Load - Forecast vs Actual

LMP Price & Site Usage

Real Time Energy

Just for Krypto - 1640 Kitty Hawk Ct
Latest Load
--
-- kW
Period Average
--
kW
Period Min
--
kW
Period Max
--
kW
Data Points
--
records

Load by Hour

Hour Avg Load (kW) Min (kW) Max (kW) Readings

Energy Prices

MP.AEPE14
Current Price
--
$/MWh
Period Average
--
$/MWh
Period Min
--
$/MWh
Period Max
--
$/MWh

Price Trend - MP.AEPE14

Price Statistics

Metric 1 Hour 4 Hours 24 Hours
Average -- -- --
Min -- -- --
Max -- -- --

Hourly Price Data

Hour (EPT) HE RT LMP ($/MWh) DA LMP ($/MWh) RT-DA Spread

Baseline

Loading...
...
Loading
Fetching baseline data...

WEEKDAY BASELINE

Avg Baseline --
Clean Days --
Days in Baseline --
Drops to 4 on --

WEEKEND BASELINE

Avg Baseline --
Clean Days --
Days in Baseline --
Drops to 1 on --

Data Source

Baseline data is calculated from Voltus meter readings and synced from Google Sheets. Updates automatically when the spreadsheet is refreshed.

CP Risk Rankings

Loading...
...
Loading
Fetching CP risk data...
Risk Score --
Load Forecast --
Season --
Budget --
Triggered --
Remaining --
≥80: High Risk - likely to trigger
60-79: Watch - elevated risk
40-59: Moderate
<40: Low risk

January 2026 Risk Rankings

Day Date Score Raw z_W z_L Load MW Temp Status
Loading CP data...

About CP Risk Rankings

CP (Coincident Peak) risk scores combine weather forecasts and load projections to predict days when MISO system peaks are likely to occur. High-risk days may trigger demand response events. Data is synced from the Weather Data spreadsheet.

Data Catalog

Available data sources and APIs
πŸ’°

LMP Pricing

5-minute ex-post locational marginal prices for node MP.AEPE14

Real-time MISO
/api/miso
⚑

Load Forecast

Daily load forecast and actual values for LRZ1 zone

Hourly MISO
/api/load
πŸ”Œ

Site Telemetry

Real-time energy usage from Voltus meters for Just for Krypto site

5-min Voltus
/api/voltus/telemetry
πŸ“‹

Dispatch History

MISO Price Response curtailment dispatches and commitments

Daily Voltus
/api/voltus/dispatches
πŸ“Š

Voltus Data Sheet

Usage data, dispatches, baselines, and earnings calculations

Google Sheets Voltus
Open Sheet β†’
πŸ“ˆ

MISO Price History

Historical LMP prices with hourly aggregations

Google Sheets MISO
Open Sheet β†’
πŸ“‹

LMP Price History

Day-ahead and real-time LMP prices stored in database

Daily MISO
/api/lmp-prices
🌀️

Weather Data

Weather forecasts affecting load and generation

Google Sheets Weather
Open Sheet β†’
πŸ“‰

EIA Zone 1 Load

Hourly demand data for MISO Zone 1 from EIA Form 930

Hourly EIA
/api/eia-load
🎯

CP Risk Rankings

Coincident peak risk scores combining weather and load forecasts

Daily Google Sheets
/api/sheets?spreadsheet=cp&sheet=CP_RANKINGS

API Documentation

GET /api/miso

Returns current LMP data and price history for the configured node.

{
  "timestamp": "2026-01-16T12:00:00Z",
  "targetNode": "MP.AEPE14",
  "lmp": 25.47,
  "mlc": 0.23,
  "mcc": 1.09,
  "history": [...]
}

GET /api/load

Returns load forecast and actual data for LRZ1 zone.

{
  "timestamp": "2026-01-16T12:00:00Z",
  "lrz1": {
    "forecast": [...],
    "actual": [...],
    "currentForecast": 13382,
    "currentActual": 13392
  }
}

GET /api/voltus/telemetry

Returns real-time energy usage from Voltus meters. Add ?hours=N for history (default 24h). Add ?action=sync to trigger a manual sync.

{
  "site_id": "7zjwlz",
  "site_name": "Just for Krypto - 1640 Kitty Hawk Ct",
  "current": {
    "timestamp": "2026-01-16T18:35:00Z",
    "value_kw": 17856.26
  },
  "history": [
    { "timestamp": "...", "value_kw": 17666.69, "interval_seconds": 300 }
  ],
  "sync": { "last_sync": "...", "status": "success" }
}

GET /api/voltus/dispatches

Returns dispatch/curtailment history from MISO Price Response program. Add ?days=N for history (default 365 days).

{
  "site_id": "7zjwlz",
  "dispatches": [
    {
      "id": "5x1vn",
      "start_time": "2026-01-15T12:00:00Z",
      "end_time": "2026-01-15T13:00:00Z",
      "program_name": "MISO Price Response",
      "market": "MISO",
      "commitment": 12700,
      "drop_by": 12700
    }
  ],
  "summary": {
    "total_dispatches": 1,
    "total_commitment_kwh": 12700
  }
}

GET /api/eia-load

Returns hourly demand data for MISO Zone 1 from EIA Form 930. Add ?hours=N for history (default 168h/7 days). Data has ~1-2 hour lag.

{
  "timestamp": "2026-01-28T12:00:00Z",
  "source": "EIA Form 930",
  "zone": "MISO Zone 1",
  "dataLag": "2 hours",
  "lrz1": {
    "actual": [
      { "date": "2026-01-28", "hour": 12, "value": 14638 }
    ],
    "currentActual": 14638,
    "stats": { "min": 12500, "max": 14900, "avg": 13800 },
    "peak": { "date": "2026-01-28", "hour": 18, "value": 14900 }
  },
  "dailySummary": [
    { "date": "2026-01-28", "peak": 14900, "min": 12500, "avg": 13800 }
  ]
}

GET /api/sheets?spreadsheet=cp&sheet=CP_RANKINGS

Returns CP Risk Rankings from Weather Data spreadsheet. Use &raw=true for 2D array format.

{
  "sheet": "CP_RANKINGS",
  "headers": ["Day", "Date", "Score", "z_W", "z_L", ...],
  "data": [
    {
      "Day": "Wed",
      "Date": "2026-01-28",
      "Score": "100",
      "z_W": "1.10",
      "z_L": "1.77",
      "Load MW": "14638",
      "TempΒ°F": "35",
      "Status": "TODAY"
    }
  ]
}

Data Sync Status

Data Source Last Sync Records Status Schedule
Voltus Telemetry -- -- -- Every 5 minutes
Voltus Dispatches -- -- -- Daily at 1:00 AM CT

Natural Gas Futures

NYMEX Henry Hub Forward Curve
Next Month
--
$/MMBtu
Contract
--
--
Curve Min
--
$/MMBtu
Curve Max
--
$/MMBtu

12-Month Forward Curve

Futures Contracts

Contract Symbol Price Change Day High Day Low

Site Photos

Just For Krypto - 1640 Kitty Hawk Ct, Brainerd, MN