> ## Documentation Index
> Fetch the complete documentation index at: https://goldrush.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# OhlcvCandle

OHLCV candlestick data for a trading pair

## Fields

<ResponseField name="pair_address" type="string">
  The address of the primary DEX pool with the most liquidity for the token
</ResponseField>

<ResponseField name="base_token" type="object">
  Information about the queried token

  Type: [`TokenContractMetadata`](/api-reference/streaming-api/types/token-contract-metadata)

  <Expandable title="properties">
    <ResponseField name="contract_name" type="string">
      Name of the token contract
    </ResponseField>

    <ResponseField name="contract_address" type="string">
      Address of the token contract
    </ResponseField>

    <ResponseField name="contract_decimals" type="int">
      Number of decimal places for the token
    </ResponseField>

    <ResponseField name="contract_ticker_symbol" type="string">
      Ticker symbol of the token
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="volume" type="float">
  Trading volume during the interval
</ResponseField>

<ResponseField name="timeframe" type="enum">
  The requested timeframe

  Type: [`OhlcvTimeFrame`](/api-reference/streaming-api/types/ohlcv-time-frame)
</ResponseField>

<ResponseField name="high" type="float">
  Highest price during the interval
</ResponseField>

<ResponseField name="quote_rate" type="float">
  Exchange rate between base and quote tokens
</ResponseField>

<ResponseField name="low" type="float">
  Lowest price during the interval
</ResponseField>

<ResponseField name="quote_rate_usd" type="float">
  USD value of the quote rate
</ResponseField>

<ResponseField name="quote_token" type="object">
  Information about the paired token of the primary DEX pool

  Type: [`TokenContractMetadata`](/api-reference/streaming-api/types/token-contract-metadata)

  <Expandable title="properties">
    <ResponseField name="contract_name" type="string">
      Name of the token contract
    </ResponseField>

    <ResponseField name="contract_address" type="string">
      Address of the token contract
    </ResponseField>

    <ResponseField name="contract_decimals" type="int">
      Number of decimal places for the token
    </ResponseField>

    <ResponseField name="contract_ticker_symbol" type="string">
      Ticker symbol of the token
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="interval" type="enum">
  The candle interval

  Type: [`OhlcvTimeInterval`](/api-reference/streaming-api/types/ohlcv-time-interval)
</ResponseField>

<ResponseField name="id" type="string">
  Unique identifier for this candle
</ResponseField>

<ResponseField name="volume_usd" type="float">
  Trading volume in USD
</ResponseField>

<ResponseField name="close" type="float">
  Closing price for the interval
</ResponseField>

<ResponseField name="chain_name" type="enum">
  The blockchain network where the token exists

  Type: [`ChainName`](/api-reference/streaming-api/types/chain-name)
</ResponseField>

<ResponseField name="open" type="float">
  Opening price for the interval
</ResponseField>

<ResponseField name="timestamp" type="string">
  Candle timestamp (ISO-8601)
</ResponseField>
