Documentation Index
Fetch the complete documentation index at: https://docs.oms.verolabs.co/llms.txt
Use this file to discover all available pages before exploring further.
Channel
Description
Candlestick/OHLCV updates. Current app default time is 60 seconds.WebSocket URL
Channel parameters
| Parameter | Type | Description | Values |
|---|---|---|---|
symbol | string | Trading symbol, for example VN30F1M. | example: VN30F1M |
time | integer | Candle resolution in seconds. The mobile app uses 60 for 1 minute and 86400 for daily. | default: 60 enum: 60, 86400 |
Message
| Item | Value |
|---|---|
| Operation | receiveOhlcv |
| Name | Ohlcv |
| Payload | OhlcvBar |
| Handler | StreamingService._handleOhlcvUpdate |
Payload schema
| Field | Type | Notes |
|---|---|---|
unixTime | integer (int64) | Unix timestamp. The mobile handler also accepts time. |
time | integer (int64) | Alias accepted by the mobile handler. |
open | number | - |
high | number | - |
low | number | - |
close | number | - |
volume | number | - |

