> ## 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.

# DetailedPairStatsNumberMetrics

> Integer-valued time-series metrics (e.g. transactions, buys, sells, traders) with change and buckets.

### TypeScript shape

```ts theme={null}
interface DetailedPairStatsNumberMetrics {
  change: number | null;
  currentValue: number | null;
  previousValue: number | null;
  buckets: number[];
}
```

<ResponseField name="change" type="Float">
  Period-over-period change.
</ResponseField>

<ResponseField name="currentValue" type="Int">
  Current value.
</ResponseField>

<ResponseField name="previousValue" type="Int">
  Previous period value.
</ResponseField>

<ResponseField name="buckets" type="[Int!]!">
  Time-series bucket values.
</ResponseField>
