Gold Volatility Index was last reported at 24.98 Index as of September 17, 2026. That is down 5.91% from the prior reading of 26.55 Index. This indicator is reported Daily, Close and not seasonally adjusted, and is tracked under the Markets category. The next scheduled release is September 21, 2026.
| Date | Value (Index) |
|---|---|
| Sep 17, 2026 | 24.98 |
| Sep 16, 2026 | 26.55 |
| Sep 15, 2026 | 26.90 |
| Sep 14, 2026 | 26.54 |
| Sep 11, 2026 | 25.68 |
| Sep 10, 2026 | 28.48 |
| Sep 9, 2026 | 27.79 |
| Sep 8, 2026 | 27.26 |
| Sep 4, 2026 | 26.63 |
| Sep 3, 2026 | 27.18 |
| Date | Value (Index) |
|---|---|
| Sep 2, 2026 | 26.14 |
| Sep 1, 2026 | 25.43 |
| Aug 31, 2026 | 24.40 |
| Aug 28, 2026 | 25.17 |
| Aug 27, 2026 | 26.80 |
| Aug 26, 2026 | 26.96 |
| Aug 25, 2026 | 27.69 |
| Aug 24, 2026 | 28.28 |
| Aug 21, 2026 | 27.29 |
| Aug 20, 2026 | 27.28 |
Pull the full history of Gold Volatility Index into your own models, spreadsheets and apps with the
free Business Quant Economic Data API. Swap YOUR_API_KEY for your own key.
https://data.businessquant.com/economic?code=USGOLDVIX&period=max&api_key=YOUR_API_KEY
import requests
url = "https://data.businessquant.com/economic"
params = {"code": "USGOLDVIX", "period": "max", "api_key": "YOUR_API_KEY"}
data = requests.get(url, params=params).json()
const res = await fetch("https://data.businessquant.com/economic?code=USGOLDVIX&period=max&api_key=YOUR_API_KEY");
const data = await res.json();