Candles

1-second OHLCV candlestick data for all markets.

1-second OHLCV candlestick data for every perpetual and spot market on Hyperliquid and all HIP-3 dexes. Updated daily. Larger intervals (1m, 5m, 1h, etc.) can be aggregated from the 1s data.

S3 Paths

Bucket: s3://hydromancer-reservoir (requester pays)

global/candles/1s/date=YYYY-MM-DD/candles.parquet
by_dex/{dex}/candles/1s/date=YYYY-MM-DD/candles.parquet

Files are only created for dates with data. Each file contains all markets for that dex on that day.

Schema

Column
Type
Description

coin

string

Raw market identifier (e.g., BTC, xyz:MSFT, @107)

dex

string

DEX name

asset_class

string

perp or spot

base_symbol

string

Base asset (e.g., BTC, MSFT)

quote_symbol

string

Quote/collateral asset (e.g., USDC, USDT0)

timestamp

timestamp(ms, UTC)

Candle open time

open

decimal(20,10)

Open price

high

decimal(20,10)

High price

low

decimal(20,10)

Low price

close

decimal(20,10)

Close price

volume

decimal(20,10)

Volume in base asset

volume_quote

decimal(20,10)

Volume in quote asset

trade_count

uint32

Number of trades

Aggregating to Larger Intervals

Since we provide 1s candles, you can aggregate to any interval:

Quick Start

DuckDB

Last updated