Live Dashboard
LMP Price History
LRZ1 Load - Forecast vs Actual
LMP Price & Site Usage
Real Time Energy
Load by Hour
| Hour | Avg Load (kW) | Min (kW) | Max (kW) | Readings |
|---|
Energy Prices
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 |
|---|
Forecast Analysis
LRZ1 Load - 24 Hour Profile
Hourly Forecast Data
| Hour | Forecast (MW) | Actual (MW) | Variance |
|---|
Baseline
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.
Data Catalog
LMP Pricing
5-minute ex-post locational marginal prices for node MP.AEPE14
Load Forecast
Daily load forecast and actual values for LRZ1 zone
Site Telemetry
Real-time energy usage from Voltus meters for Just for Krypto site
Dispatch History
MISO Price Response curtailment dispatches and commitments
LMP Price History
Day-ahead and real-time LMP prices stored in database
Weather Data
Weather forecasts affecting load and generation
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
}
}
Data Sync Status
| Data Source | Last Sync | Records | Status | Schedule |
|---|---|---|---|---|
| Voltus Telemetry | -- | -- | -- | Every 5 minutes |
| Voltus Dispatches | -- | -- | -- | Daily at 1:00 AM CT |