Skip to content
EliteChart

SearchOptions

Documentation


Documentation / @elitechart/core / SearchOptions

Defined in: data/types.ts:199

Options for narrowing a symbol search. All fields are optional — pass an empty object for an unfiltered search.

Example

code
const opts: SearchOptions = { type: 'crypto', limit: 20 };

Properties

exchange?

code
readonly optional exchange?: string;

Defined in: data/types.ts:201


limit?

code
readonly optional limit?: number;

Defined in: data/types.ts:202


type?

code
readonly optional type?: InstrumentType;

Defined in: data/types.ts:200