China's Paper Gold Shutdown: What Is Really Closing
China's paper gold shutdown affects personal Shanghai Gold Exchange access through banks. See what is closing, what remains open, and the price impact.
Read →What the gold-to-silver ratio is, how it is calculated, why traders watch it, and how to read it in context. A data-first explainer designed to stay evergreen.
The gold-to-silver ratio is one of the oldest and most-watched cross-commodity metrics in metals markets. It answers a simple question: how many ounces of silver does it take to buy one ounce of gold?
If gold trades at $3,300 per troy ounce and silver at $33, the ratio is 100. If gold falls to $3,000 while silver stays at $33, the ratio drops to roughly 91.
The calculation is straightforward division:
ratio = gold spot price (USD/oz) / silver spot price (USD/oz)
Both inputs should use the same pricing basis—spot is conventional, and using a continuous spot reference for each metal keeps the ratio stable intraday. Futures settlement prices can also be used, but the lag inherent in daily closes introduces a one-day delay in the metric. For a primer on the difference, see Spot, futures, and settlement: gold prices decoded.
The ratio has historically oscillated in a wide range, and participants use extremes as relative-value signals:
High ratio (gold expensive relative to silver): Some traders interpret this as silver being historically cheap—a potential setup to sell gold and buy silver in anticipation of mean reversion. During acute financial stress events the ratio has spiked sharply, then unwound as risk appetite returned.
Low ratio (silver expensive relative to gold): A compressed ratio often coincides with periods of strong industrial demand or speculative momentum in silver. Traders who believe the ratio will widen back toward its long-run average may position the reverse: long gold, short silver.
Cross-commodity hedges: Miners and refiners who produce both metals use the ratio to time the sale of one metal versus the other—locking futures for whichever metal the ratio currently favors.
It is worth noting that the ratio is not predictive on its own. It is a relative measure. When the ratio is 100, gold may be expensive, or silver may be cheap, or both assumptions may be wrong—market conditions, industrial demand, ETF flows, and macro regimes all influence where the ratio "should" be.
For most of the twentieth century, the ratio ranged roughly between 30 and 80. The late 1970s brought a brief collapse toward 15 as silver spiked during the commodity supercycle of that era. The 1990s and early 2000s saw the ratio expand past 80 as gold entered a secular rerating cycle.
Significant events—financial crises, pandemic dislocations, central bank policy pivots—often trigger sharp moves in the ratio before it gradually reverts. Long-run averages are frequently cited as a reference, but the ratio has rarely been stable for extended periods.
Both gold and silver spot prices are available from a single endpoint. See Compute the gold-to-silver ratio with the API for a working JavaScript implementation. A quick Python ratio calculation:
import requests
headers = {"Authorization": "Bearer YOUR_API_KEY"}
resp = requests.get(
"https://api.goldprice.dev/v1/prices",
params={"symbols": "XAU-USD-SPOT,XAG-USD-SPOT", "include": "sources"},
headers=headers,
)
data = resp.json()
prices = {row["symbol"]: row["price"] for row in data["sources"] if row["type"] == "spot"}
xau = prices.get("XAU-USD-SPOT")
xag = prices.get("XAG-USD-SPOT")
if xau and xag:
ratio = xau / xag
print(f"Gold/Silver ratio: {ratio:.1f}")
With ?include=sources, the response includes a sources[] array, so you can verify which oracle is behind each price and cross-check divergence between sources before computing ratios that drive decisions.
Used carefully, the ratio is a clean, real-time lens on the relative pricing of two closely related metals. Combined with live spot data and your own macro view, it is a useful input—not a standalone signal.
related guides
China's paper gold shutdown affects personal Shanghai Gold Exchange access through banks. See what is closing, what remains open, and the price impact.
Read →UAE gold tax explained: when investment bullion is zero-rated, when 5% VAT applies, how making charges work, and what tourists and sellers should check.
Read →India gold tax explained for 2026: 3% GST on jewelry transaction value, 15% import duty, capital-gains holding periods, and records to keep.
Read →goldprice.dev
Live gold prices, historical OHLC, and multi-source aggregation — available via REST and SSE.