I pulled a handful of signals from a data API I use, mostly to check one thing: is the market actually calm, or just quiet in the places we happen to watch? The answer was messier than the headlines.
what the data said (pulled 2026-08-30, around 22:00 UTC)
Gold is the loud one. The front-month gold signal shows GC_F at 4340.70, up 2.3% on the day and 7.3% over the last four sessions. Its 30-day z score is 4.18 and its 30-day percentile rank is 100.0. In plain terms, gold is as stretched relative to its own recent range as it gets.
The cross-asset fear thermometer disagrees. It reads 16 out of 100, which the dataset labels as greedy but low. VIX is 14.9. The annualized volatility split is the part I find telling: gold 29%, equities 14%, crypto 17%. Gold is the most volatile of the three right now, even as equities sit still.
The crypto fear and greed index closed at 69 (Greed) on 2026-08-30. That is above its own 30-day average of 44.8, but under the 90-day high of 74. So crypto leans greedy, not euphoric.
For a macro backdrop, the fed-policy feed lists Kevin Warsh as chair, with a speech titled "In Our Time" dated 2026-08-28. That is a qualitative signal, not a rate decision, and I treat it as such.
I also ran an on-chain sanity check. BTC MVRV is 1.486 (data date 2026-08-29) and NUPL is 0.327, which the source places in the belief-to-greed band. Neither is at an extreme. The holder base is optimistic but not at profit bubble levels.
how I pulled it
The whole catalog is one JSON file. I hit it like this:
curl -s https://agentdatum.com/.well-known/ai-catalog.json | python3 -m json.tool | head -n 20
For a single live signal, the gold endpoint returns the same shape the article uses:
curl -s https://agentdatum.com/api/v1/d/sig-gold
Each resource in the catalog carries an identifier, a url, and a type, so you can script across all 261 of them without reading docs first.
the honest part
I would not build a position on this snapshot alone, and here is why.
The gold z score of 4.18 is real, but gold's own annualized vol is 29%, the highest of the three assets. A chunk of that z score is gold being gold, not conviction flowing in. Stretch and volatility travel together.
The fear gauges measure different things. A 16/100 cross-asset reading and a 14.9 VIX describe equity calm. Gold's 29% vol describes gold. They are not contradicting each other so much as watching different rooms.
The crypto greed at 69 is above trend but below the 90-day top, so calling it a top would be a stretch. MVRV at 1.486 backs that up: holders are in the money, not euphoric.
And the Fed speech is a title and a date in the feed, not a policy move. I cite it as context, not as a signal that rates moved.
Freshness matters too. The signal endpoints were collected around 2026-08-30 22:00 UTC (early morning Beijing time on the 31st). The MVRV and NUPL figures are one day behind, dated 2026-08-29. If you trade on these, check the collected_at field first.
what I take from it
The market is not one mood, it is several, in different assets. Gold is stretched, equities are calm, crypto is leaning greedy but contained, and on-chain BTC holders are optimistic without excess. When the rooms disagree, the safe move is to size small and watch which one breaks first.
If you want to pull the same feeds, the full catalog is here: https://agentdatum.com/.well-known/ai-catalog.json
This article was written with AI assistance for drafting and editing.
Top comments (0)