Quotes Stream¶
Quote updates are broadcast to WebSocket sessions subscribed to the symbol channel.
Outgoing Message Format¶
Sent as a JSON array:
| Index | Field | Type | Description |
|---|---|---|---|
| 0 | "t" |
string | Event marker for tick / quote |
| 1 | symbol |
string | Symbol name |
| 2 | bid |
double | Current bid price |
| 3 | ask |
double | Current ask price |
| 4 | ctm |
int64 | Tick timestamp |
Example¶
[
"t",
"EURUSD",
1.10012,
1.10024,
1775481000
]
Notes¶
- Quote events are symbol-channel based.
- A session receives quote events only for subscribed symbols.
ctmis the server tick timestamp.