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

# CurrencyBarData

> A pair of OHLCV bars — one denominated in USD, one in the network's native token — for a single resolution.

### TypeScript shape

```ts theme={null}
interface CurrencyBarData {
  t: number;
  usd: IndividualBarData;
  token: IndividualBarData;
}
```

<ResponseField name="t" type="Int!">Unix timestamp (seconds) of the bar's start.</ResponseField>
<ResponseField name="usd" type="IndividualBarData!">USD-denominated bar. See [IndividualBarData](/api-reference/graphql/types/IndividualBarData).</ResponseField>
<ResponseField name="token" type="IndividualBarData!">Same bar denominated in the chain's native token.</ResponseField>
