FilteredTick

Description: the exchange rate for EURUSD is 1 in case of account currency is USD

Triggered by: TicksFilteredSubscribe

Switched off by: TicksFilteredUnsubscribe

Response Type - FilteredTick.

Response Body Fields:

Parameter
Always returned
Type
Description

symbol

string

symbol for which a tick was received

time

int64

time of ticks in milliseconds in UTC

bid

double

bid price

ask

double

ask price

Example:

{
    "type": "FilteredTick",
    "body": {
        "symbol": "GBPUSD",
        "time": 1697455883402,
        "bid": 1.21522,
        "ask": 1.21552
    }
}

Last updated