--- license: cc-by-nc-4.0 task_categories: - tabular-classification - tabular-regression - time-series-forecasting tags: - synthetic-data - wholesale-energy-market - electricity-trading - lmp - locational-marginal-price - day-ahead-market - real-time-market - spot-price - futures - forward-contracts - swaps - cfd - contract-for-differences - ancillary-services - regulation-up - regulation-down - spinning-reserve - black-start - voltage-support - bilateral-contracts - ppa - power-purchase-agreement - ote-energy - otc - market-clearing - pjm - caiso - ercot - miso - nyiso - iso-ne - ferc - nerc - ferc-order-755 - ferc-order-888 - ferc-order-890 - isda - eei-master-agreement - basel-iii - var - value-at-risk - cvar - conditional-var - risk-management - mean-reversion - ornstein-uhlenbeck - schwartz-model - options-greeks - implied-volatility - price-spike - negative-prices - capacity-market - demand-response - virtual-bidding - congestion - ftr - credit-rating pretty_name: ENR006 — Synthetic Wholesale Energy Market Trading Dataset (Sample) size_categories: - 10K= trd["var_95_usd"]).mean() cvar95_ge_var95 = (trd["cvar_95_usd"] >= trd["var_95_usd"]).mean() print(f"VaR_99 >= VaR_95: {var99_ge_var95*100:.2f}%") print(f"CVaR_95 >= VaR_95: {cvar95_ge_var95*100:.2f}%") ``` --- ## Limitations and honest disclosures This sample is calibrated for **structural fidelity, not bit-exact reproduction of any specific ISO's settlement archive.** Specifically: - **Spot prices cover only 5 pricing nodes** even when `n_pricing_nodes` is set higher — the generator hardcodes `node_ids[:5]` in its main flow (line 821). This is intentional sample-mode behavior; the full product pipeline scales to 500+ pricing nodes via the per-node-batch design. - **Ancillary services covers only the first 168 timestamps** (one week via the generator's `timestamps_da[:168]` slice on line 823). For hours_da=336 in this sample, ancillary spans week 1 only; spot, futures, market clearing, and trading span the full 2-week window. - **LMP three-part decomposition is broken by design** on (a) rows where `lmp_total` is clamped to the ISO price cap or floor, and (b) rows where `negative_price_flag=1` (negative-price override). The wrapper validates the decomposition on NORMAL rows only (cap_flag=0 AND negative_price_flag=0). For research that requires the full identity to hold, mask out the special-case rows or use the `lmp_energy + lmp_congestion + lmp_loss` sum directly. - **Price spike rate and negative price rate are sample-scale unstable.** At 1,680 spot rows, the generator's Poisson(0.02) spike arrivals and the conjunction `random < 0.04 AND system_lambda < 0.3*base_lmp` for negative prices fire too rarely to validate against the generator's designed 2-10% spike / 1-8% negative-price targets. The full annual product matches those targets at scale. For tail-event ML, use the full product or the pre-built scenario configs. - **`system_lambda` AR(1) coefficient is HIGHLY seed-dependent at sample scale** (observed range 0.20-0.90 across 6 seeds). The underlying mean-reverting process has θ=0.12/hr → asymptotic AR(1) ≈ 0.88, but spike events at small samples distort the lag-1 correlation. We validate `system_lambda` falling within the ISO floor/cap bounds instead of the AR(1) coefficient. For mean-reversion analysis, use the full annual product or fit a state-space model. - **The generator's `run_benchmarks` reports "Grade: A+" misleadingly.** Its `all_passed` flag is only updated by `check_list` (line 598-603) which isn't actually invoked for any test in this version — so `all_passed=True` regardless of module-level pass/fail flags. This wrapper provides genuine industry-anchored validation via the scorecard above. - **Forward curve uses a simplified seasonal + linear-risk-premium shape** (`fwd_curve = mean(system_lambda) * seasonal_adj + risk_premium`). Real forward curves include calendar-spread structure, weather-stochastic vol, and counterparty-specific basis that the generator does not model. - **Options Greeks fire on only ~15% of contracts** (FUTURES + CfD types with 30% optionality probability). The remaining 85% have all Greeks set to zero. Filter `implied_vol_pct > 0` to extract the options- bearing subset before training Greek-prediction models. - **`negative_price_flag = 1` row prices use `-rng.exponential(20)`** — i.e., a magnitude draw, NOT a structural reason like solar oversupply or congestion island. Use the flag as a label, not a causal driver. - **`market_surplus_usd`, `virtual_bid_pnl_usd`, `capacity_market_price` are independent random draws**, not computed from underlying market dynamics. Treat as auxiliary fields for model-feature space, not as ground-truth market clearing outputs. - **Credit ratings are sampled with a designed distribution `[5%, 10%, 20%, 30%, 20%, 10%, 5%]` for [AAA, AA, A, BBB, BB, B, CCC]** — IG-skewed but not anchored to any specific counterparty pool. Use as a categorical feature; don't infer real-world default probabilities directly. - **All trades sampled from `participant_ids`** uniformly; trade pairings (buyer / seller) can occasionally match the same participant for both sides at small sample scale. For market-surveillance ML, filter buyer_id ≠ seller_id. - **`hours_da` is hourly cadence only** — no 5-min real-time market data in the sample. The full product includes both DAM and RTM at 5-min resolution via `intervals_rt_per_hour=12`. The full ENR006 product addresses these by full annual coverage, all 500+ pricing nodes, calibrated forward curves, RTM 5-min interval settlement, and pre-built scenario configs (price_spike_event, high_renewable_negative_prices, capacity_crunch, standard_annual) — contact us for the licensed commercial release. --- ## Companion datasets in the Energy & Climate vertical - **ENR-001** — Synthetic Power Grid Operations Dataset (transmission bus telemetry, line flows, generation dispatch, frequency, contingency) - **ENR-002** — Synthetic Renewable Energy Generation Dataset (utility-scale solar/wind/hybrid SCADA, weather, forecast, PCC, BESS) - **ENR-003** — Synthetic Electricity Demand & Load Forecasting Dataset (zone-level demand, multi-horizon forecasts, peak events, EV/DER, TOU) - **ENR-004** — Synthetic Upstream Oil & Gas Production Dataset (well-level production, decline curves, PVT, commodity prices, Subpart W methane) - **ENR-005** — Synthetic Smart Grid Dataset (AMI, DER, OpenADR, feeder power flow, grid edge analytics) - **ENR-006** — Synthetic Wholesale Energy Market Trading Dataset (you are here) — **the market/trading complement to ENR-001's physical-grid view**: spot price formation, derivatives, ancillary services, bilateral PPAs, and trading risk Use **ENR-001 + ENR-003 + ENR-006** together for full **physical-grid + load-forecast + market-clearing** ML workflows; combine with **ENR-002 + ENR-005** to add renewables and distribution-edge in the same modeling stack. For subsurface companion data (seismic, well logs, reservoir simulation, geological formations), see the **OIL series** (OIL-001 through OIL-004) in our [Oil & Gas vertical](https://huggingface.co/xpertsystems). For the broader catalog: - [Materials & Energy](https://huggingface.co/xpertsystems) — MAT-001 - [Insurance & Risk](https://huggingface.co/xpertsystems) — 10 SKUs - [Cybersecurity](https://huggingface.co/xpertsystems) — 11 SKUs --- ## Citation ```bibtex @dataset{xpertsystems_enr006_sample_2026, author = {XpertSystems.ai}, title = {ENR006 Synthetic Wholesale Energy Market Trading Dataset (Sample Preview)}, year = 2026, publisher = {Hugging Face}, url = {https://huggingface.co/datasets/xpertsystems/enr006-sample} } ``` --- ## Contact - **Web:** https://xpertsystems.ai - **Email:** pradeep@xpertsystems.ai - **Full product catalog:** Cybersecurity, Insurance & Risk, Materials & Energy, Oil & Gas, Energy & Climate, and more **Sample License:** CC-BY-NC-4.0 (Creative Commons Attribution-NonCommercial 4.0) **Full product License:** Commercial — please contact for pricing.