Skip to main content
GET
https://openapi.yixin.com.vn
/
GetOhlcvHis
/
{symbol}
/
{resolution}
/
{fromMs}
/
{toMs}
Get OHLCV history
curl --request GET \
  --url https://openapi.yixin.com.vn/GetOhlcvHis/{symbol}/{resolution}/{fromMs}/{toMs}
[
  {
    "unixTime": 123,
    "open": 123,
    "high": 123,
    "low": 123,
    "close": 123,
    "volume": 123
  }
]

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.

Path Parameters

symbol
string
required
Example:

"VN30F1M"

resolution
integer
required

Candle resolution in seconds. The app uses 60 for 1 minute and 86400 for daily.

Example:

60

fromMs
integer<int64>
required

Start time in Unix milliseconds.

toMs
integer<int64>
required

End time in Unix milliseconds.

Response

OHLCV bars.

unixTime
integer<int64>
required

Unix timestamp in milliseconds, based on mobile app parsing.

open
number
required
high
number
required
low
number
required
close
number
required
volume
number
required