All datasets

US natural-gas market signals (Henry Hub spike & regime gauges)

Daily US natural-gas market signals from the EIA Henry Hub spot price (FRED DHHNGSP, 1997 ->, $/MMBtu): 90-day momentum, year-on-year change, 30-day change volatility, 3-sigma anomaly flags, naive-drift forecasts, price-spike day flags, an elevated-price ($5+) flag, a 5-year z-score, and a heating-season flag. The natural-gas companion to us-fuel-price-signals (pump prices) — gas moves on weather, storage, and LNG exports, with some of the sharpest spikes of any commodity. All rows normalized to country_code USA. Raw series: U.S. Energy Information Administration via FRED.

Source: US Natural-Gas Market Signals (derived)5,687 rowsUpdated: 9/22/2026
natural-gashenry-hubenergycommodityspikevolatilityheating-seasoneiamomentumanomaly-detectionforecastingsignalsfred

Quality

99.1

Attribution

U.S. Energy Information Administration via FRED; signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringObservation date (FRED API field date; YYYY-MM-DD, daily).
countrystring
country_codestring
series_idstringHHGAS: Henry Hub Natural Gas Spot Price (FRED DHHNGSP), the US natural-gas benchmark from the U.S. Energy Information Administration.
series_labelstringHenry Hub Natural Gas Spot Price in dollars per million BTU — the benchmark price for natural gas delivered at the Henry Hub in Louisiana.
valuefloatSpot price in dollars per million BTU (daily). Henry Hub is the pricing point for US natural-gas futures and the reference for power prices, industrial costs, and winter heating bills.
momentum_3mfloat
yoy_changefloat
volatility_30dfloat
anomaly_flaginteger
forecast_1mfloat
spike_flaginteger
elevated_price_flaginteger
gas_z_5yfloat
draw_season_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluemomentum_3myoy_changevolatility_30danomaly_flagforecast_1mspike_flagelevated_price_flaggas_z_5ydraw_season_flag
1997-01-07United StatesUSAHHGASHenry Hub Natural Gas Spot Price (dollars per million BTU)3.820001
1997-01-08United StatesUSAHHGASHenry Hub Natural Gas Spot Price (dollars per million BTU)3.80001
1997-01-09United StatesUSAHHGASHenry Hub Natural Gas Spot Price (dollars per million BTU)3.610001
1997-01-10United StatesUSAHHGASHenry Hub Natural Gas Spot Price (dollars per million BTU)3.920001
1997-01-13United StatesUSAHHGASHenry Hub Natural Gas Spot Price (dollars per million BTU)40001

Download sample data

Download the full sample snapshot for this dataset (sample rows, not the complete dataset).

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/us_natgas_signals/us_natural_gas_market_signals" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/us_natgas_signals/us_natural_gas_market_signals").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/us_natgas_signals/us_natural_gas_market_signals

Tip: fetch /llms.txt for the full machine-readable catalog.