GetSymbolTickInfo

Returns the latest tick information for a symbol.

Syntax

GetSymbolTickInfo(symbol: string, tickData: Tick): boolean

Parameters

  • symbol: string - The symbol to get tick information for

  • tickData: Tick - Object to be filled with the tick information

Return Value

Returns a boolean indicating whether the operation was successful.

Description

The GetSymbolTickInfo method retrieves the latest tick information for a specified symbol and fills it into the provided tick data object. The tick information includes:

  • Bid price

  • Ask price

  • Last price

  • Volume

  • Time of the tick

Example

Last updated