Close and Volume is not matching

manasv
Daily data from historical_data API, quote API, and bhavcopy data do not match. Please look at the fields `close, volume, last price, prevclose`

kite.quote([4514561]) gives
```
{'4514561': {'instrument_token': 4514561,
'last_price': 1621.7,
'volume': 13880,
'ohlc': {'open': 1635, 'high': 1637, 'low': 1614.8, 'close': 1617.35},}}
```
but historical_data API gives
```
open 1635.0
high 1637.0
low 1614.8
close 1615.05
volume 13369.0
```
bhavcopy gives
```
Date 2024-01-19 00:00:00
ISIN INE768C01010
SYMBOL ZYDUSWELL
OPEN 1635.0
HIGH 1637.0
LOW 1614.8
CLOSE 1621.7
LAST 1615.05
PREVCLOSE 1617.35
TOTTRDQTY 13880
TOTTRDVAL 22581777.05
TOTALTRADES 2514
```
Tagged:
  • Arockiya_r
    This is real-time data from the exchange. The closing price is determined by the average price over the last half hour. The volume might not capture all trades made in the post-market. Every night at 12:00 am, we refresh the data using the bhavcopy. You can check this updated data after 12:05 a.m.
Sign In or Register to comment.