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

# Limit

> Getter and Setter for the number of visible price levels.

## Import

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

## Usage

Controls the size of the `asks` and `bids` arrays in the output data.

```ts theme={null}
// Only show top 5 bids/asks
orderbook.limit = 5
```

## Type

```ts theme={null}
number
```
