Candle

Triggered by: CandleSubscribe

Switched off by: CandleUnsubscribe

Response Type - FilteredTick.

Response Body Fields:

Parameter
Always returned
Type
Description

symbol

string

symbol for which a candle was received

time

int64

time of ticks in milliseconds in UTC

open

double

open candle price

high

double

high candle price

low

double

low candle price

close

double

close candle price

volume

double

always 0, not used

Example:

{
    "type": "Candle",
    "body": {
        "symbol": "GBPUSD",
        "time": 1699878660000,
        "open": 1.22361,
        "high": 1.22362,
        "low": 1.2235,
        "close": 1.22359,
        "volume": 0
    }
}

Last updated