# The gold-to-silver ratio, explained

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.

## How it is calculated

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](/blog/spot-futures-settlement).

## Why traders watch it

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.

## Historical context (kept evergreen)

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.

## How to track it with the API

Both gold and silver spot prices are available from a single endpoint. See [Compute the gold-to-silver ratio with the API](/blog/compute-gold-silver-ratio-api) for a working JavaScript implementation. A quick Python ratio calculation:

```python
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"},
    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}")
```

The API returns each source in 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.

## Limitations to keep in mind

- **The ratio is a lagging signal.** By the time a reading reaches an extreme, the move may already be mature.
- **Liquidity differs significantly.** Gold is substantially more liquid than silver. Large positions in silver can move the market in ways that distort the ratio temporarily.
- **Industrial demand is asymmetric.** Silver has significant industrial consumption (electronics, solar panels, medical uses) that gold does not. Macro shifts in those sectors can decouple the ratio from historical precedent.
- **No guarantee of mean reversion.** The long-run average shifts over time as the relative production costs, monetary roles, and industrial mix of each metal evolve.

Used carefully, the ratio is a clean, real-time lens on the relative pricing of two closely related metals. Combined with [live spot data](/prices/xau-usd) and your own macro view, it is a useful input—not a standalone signal.
