GetAvailableSymbolCount

Returns the total number of available symbols.

Syntax

GetAvailableSymbolCount(): number

Return Value

Returns a number representing the total count of available symbols.

Description

The GetAvailableSymbolCount method returns the total number of symbols available for trading. This count includes all currency pairs, commodities, indices, and other financial instruments that are accessible in the current trading environment.

Example

// Get total number of symbols
const symbolCount = this.api.GetAvailableSymbolCount()
console.log(`Total available symbols: ${symbolCount}`)

Last updated