Dreamcash
Dreamcash indices, equities, and commodities historical data.
Datasets
Dataset
Path
Quick Start
INSTALL httpfs;
LOAD httpfs;
SET s3_region = 'ap-northeast-1';
-- All Dreamcash fills for a day
SELECT timestamp, coin, base_symbol, side, price, size, direction
FROM read_parquet('s3://hydromancer-reservoir/by_dex/cash/fills/perp/all/date=2026-03-22/fills.parquet')
ORDER BY timestamp;
-- Volume by market
SELECT base_symbol, sum(price * size) as volume_usd, count(*) as trades
FROM read_parquet('s3://hydromancer-reservoir/by_dex/cash/fills/perp/all/date=2026-03-22/fills.parquet')
GROUP BY base_symbol ORDER BY volume_usd DESC;Last updated
