Skip to main content
Schema: hypercore.core Table: ez_perp_candles Type: View

What

OHLCV (Open, High, Low, Close, Volume) candlestick data for perpetual markets, enriched with market metadata. Candle data is collected via the Streamline REST API.

Key Use Cases

  • Building price charts and technical analysis
  • Calculating volatility metrics
  • Tracking volume trends by market
  • Identifying price patterns and breakouts
  • Comparing trading activity across time intervals

Important Relationships

  • Derived from silver__candles via Streamline API
  • Enriched with core__dim_perp_markets via coin
  • Complements core__ez_perp_asset_snapshots for different market views

Commonly-used Fields

  • coin: Perp asset identifier
  • candle_interval: Time interval (e.g. 1h)
  • open_time / close_time: Candle time boundaries
  • open_price / close_price / high_price / low_price: OHLC prices
  • volume: Trading volume in base asset
  • trade_count: Number of trades in interval

Columns

Column NameData TypeDescription
COINTEXTRaw asset identifier. Perps use plain ticker (e.g. BTC), spot uses @token_index format (e.g. @2), prelaunch uses xyz:name prefix.
ASSET_INDEXNUMBERNumeric index for the asset on the Hyperliquid exchange.
SIZE_DECIMALSNUMBERDecimal precision for order sizes on this market.
MAX_LEVERAGENUMBERMaximum allowed leverage for this perpetual market.
CANDLE_INTERVALTEXTTime interval for the candlestick (e.g. 1h).
OPEN_TIMETIMESTAMP_NTZTimestamp when the candle period opened.
CLOSE_TIMETIMESTAMP_NTZTimestamp when the candle period closed.
OPEN_PRICEFLOATPrice at the start of the candle period.
CLOSE_PRICEFLOATPrice at the end of the candle period.
HIGH_PRICEFLOATHighest price during the candle period.
LOW_PRICEFLOATLowest price during the candle period.
VOLUMEFLOATTrading volume in base asset units during the candle period.
TRADE_COUNTNUMBERNumber of trades executed during the candle period.
INSERTED_TIMESTAMPTIMESTAMP_NTZTimestamp when the record was inserted into this table (Snowflake SYSDATE).
MODIFIED_TIMESTAMPTIMESTAMP_NTZTimestamp when the record was last modified in this table (Snowflake SYSDATE).
EZ_PERP_CANDLES_IDTEXTSurrogate key for candle records
_INVOCATION_IDTEXTdbt invocation identifier for tracking which run produced this record.