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

# Depth

> Getter and setter for the Kraken WebSocket subscription depth.

## Import

```ts theme={null}
import { Orderbook } from '@krono/core'
```

## Usage

Defines how deep the Kraken subscription should be.

<Note>
  Changing this value while connected will trigger a reconnection.
</Note>

```ts theme={null}
// valid values: 10, 25, 100, 500, 1000
orderbook.depth = 100
```

## Type

```ts theme={null}
10 | 25 | 100 | 500 | 1000
```
