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

# Find Symbol

> Look up a trading pair using string identifiers.

## Import

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

## Usage

This helper method searches the internal `symbolMap` for a match. It supports searching by standard format (e.g., "BTC/USD"), WebSocket name (e.g., "XBT/USD"), or altname.

```ts theme={null}
const symbol = assetPairs.findSymbol('BTC/USD');

if (symbol) {
  console.log(`Found: ${symbol.displayLabel}`);
}
```

## Return Type

```ts theme={null}
SymbolOption | undefined
```

Returns the symbol configuration object if found, or `undefined` if no match exists.
