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

# Symbol

> Getter and Setter for the active trading pair.

## Import

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

## Usage

Get or set the trading symbol.

<Warning>
  Setting this property triggers a reset.
  The connection will automatically reconnect to the new symbol, and all local history/data will be cleared.
</Warning>

```ts theme={null}
// Get
const currentPair = orderbook.symbol

// Set (Triggers reconnects if active)
orderbook.symbol = 'ETH/USD'
```

## Type

```ts theme={null}
string
```
