Below is the ohlc market data feed for one of the stocks.
The 1 minute and 30 minute interval has two sets of ohlc data whereas 1 day interval has only one.
-
Can you please explain the difference for those repeating intervals ?
-
Also, what is the conversion format for “ts” which i suppose are ticks ?
"ohlc": [
{
"interval": "1d",
"open": 221.0,
"high": 223.9,
"low": 221.0,
"close": 223.1,
"volume": 3056331,
"ts": "1696876200000"
},
{
"interval": "I1",
"open": 223.05,
"high": 223.15,
"low": 223.0,
"close": 223.1,
"volume": 7935,
"ts": "1696917060000"
},
{
"interval": "I1",
"open": 223.1,
"high": 223.15,
"low": 223.0,
"close": 223.0,
"volume": 36037,
"ts": "1696917120000"
},
{
"interval": "I30",
"open": 223.25,
"high": 223.45,
"low": 222.55,
"close": 222.9,
"volume": 538296,
"ts": "1696914900000"
},
{
"interval": "I30",
"open": 222.95,
"high": 223.15,
"low": 222.9,
"close": 223.0,
"volume": 105713,
"ts": "1696916700000"
}
]