All datasets

Global crypto market signals (daily volatility, momentum, anomalies, forecasts, drawdowns)

Daily crypto market signals derived from CoinGecko's keyless free API for the 10 largest cryptocurrencies by market capitalization: 30-day annualized volatility, 3-month momentum, 3-sigma anomaly flags, naive-drift 1-month forecasts, a per-day cross-crypto volatility rank and the trailing-365-day drawdown gauge. Keyed to WLD (World); raw prices: CoinGecko (keyless free tier).

Source: Crypto Market Signals (derived)3,617 rowsUpdated: 9/21/2026
cryptobitcoinethereumstablecoinsvolatilitymomentumanomaly-detectionforecastingdrawdownsignalscoingecko

Quality

99

Attribution

Powered by CoinGecko. Crypto Market Signals are derived ML-enriched signals by Frontier Data Hub; raw price data: CoinGecko.

Schema

ColumnTypeDescription
datestringObservation date in UTC (CoinGecko /coins/{id}/market_chart prices array: [timestamp (ms), price]; date derived from the timestamp).
countrystring
country_codestring
series_idstringCoinGecko coin id (e.g. bitcoin, ethereum; CoinGecko /coins/markets field id).
series_labelstringCoin name and symbol as published by CoinGecko (/coins/markets fields name and symbol, e.g. Bitcoin (BTC)).
valuefloatDaily USD closing price (CoinGecko /coins/{id}/market_chart prices value, vs_currency=usd, interval=daily).
volatility_30dfloat
momentum_3mfloat
anomaly_flaginteger
forecast_1mfloat
rankinteger
drawdown_1yfloat
market_cap_usdintegerCoin USD market capitalization quoted in the CoinGecko /coins/markets listing at ingest time (field market_cap).

Sample rows

datecountrycountry_codeseries_idseries_labelvaluevolatility_30dmomentum_3manomaly_flagforecast_1mrankdrawdown_1ymarket_cap_usd
2025-09-22WorldWLDbinancecoinBNB (BNB)1048.566970510736200106338182423
2025-09-22WorldWLDbitcoinBitcoin (BTC)115255.84820116172001736604693783
2025-09-22WorldWLDethereumEthereum (ETH)4445.96468608734300338281719134
2025-09-22WorldWLDfigure-helocFigure Heloc (FIGR_HELOC)0.98734580023076390246
2025-09-22WorldWLDrippleXRP (XRP)2.9714986984991360096361288270

Download sample data

Download the full sample snapshot for this dataset (sample rows, not the complete dataset).

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/crypto_signals/global_crypto_market_signals" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/crypto_signals/global_crypto_market_signals").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/crypto_signals/global_crypto_market_signals

Tip: fetch /llms.txt for the full machine-readable catalog.