DEV Community

logan miller
logan miller

Posted on Originally published at agentdatum.com

what a 96 dollar brent and a 2.90 gas price told me about a flatlining energy tape, september 6, 2026

I pulled the latest energy and commodity signals from a public data API this morning. Two numbers caught my eye and they pull in opposite directions.

The first is crude. Brent crude printed 96.02 dollars per barrel and WTI sat at 91.48 dollars per barrel in the most recent EIA reading, collected on 2026-09-05. Both sit at a 56.7 percentile against their own trailing 30 period window, with z scores near 1.1. That is elevated but not extreme.

The second is US retail gasoline at 4.071 dollars per gallon, which prints at just a 6.7 percentile against its trailing 30 period window. That is near a one month low even as crude holds mid range. The downstream pump price is telling a different story than the upstream barrel.

Here is the part I almost missed. The aggregate energy momentum, measured as mom_4, is exactly 0.0. The processed signal describes energy as being at a 30 period high while recently flat. Flat is the key word. The blend looks high only because every member sits quietly above its own average, but none of them is actually moving.

I also checked the commodity stress index. It is pinned at 100.0 out of 100, the maximum reading. But that index is carried by gold at 4340.70 and silver at 63.33, both at a 100 percentile. Copper, the industrial bellwether, shows 6.6825 dollars per pound as a 2026-09-05 reference close. Natural gas is 2.90 dollars per MMBtu, a 53.3 percentile. So when someone says commodities are strong, what they really mean is precious metals are strong. The energy and base metal legs are just steady.

If you want to pull the same numbers yourself, here is a real request against the public endpoint:

curl -H "X-Anonymous-Id: demo-20260906" https://agentdatum.com/api/v1/d/processed-energy-eia
Enter fullscreen mode Exit fullscreen mode

And a quick parse in Python:

import json, urllib.request
url = "https://agentdatum.com/api/v1/d/processed-energy-eia"
req = urllib.request.Request(url, headers={"X-Anonymous-Id": "demo-20260906"})
data = json.load(urllib.request.urlopen(req))
for m in data["raw"]["members"]:
    print(m["label"], m["last_value"], "pctrank30", round(m["pctrank_30"], 1))
Enter fullscreen mode Exit fullscreen mode

The full machine readable catalog of every signal I used is at https://agentdatum.com/.well-known/ai-catalog.json.

the honest part

These readings are snapshots, not forecasts. The energy momentum of 0.0 means the trailing four prints barely moved, so calling this a high is a stretch. It is a high only relative to a quiet month. Gasoline at a 6.7 percentile looks like weakness, but gasoline has its own seasonality and taxes that crude does not carry, so I would not read it as demand collapsing. The commodity stress index at 100 is dominated by gold and silver, which are themselves riding a fear bid, so it says more about sentiment than about the real economy. Copper at 6.68 dollars per pound is a single reference close, not a trend. And the two crude figures come from different sources, an EIA series versus a Yahoo live feed, so a few cents of difference between 96.02 and 96.28 is measurement noise rather than a signal. I run a broad catalog of signals and I am the first to say it is wide rather than deep. Use it to find where to look, not as a trade.

This article was assisted by an AI writing tool. All data points are real and sourced from public market feeds as described above.

Top comments (0)