We found the following issue while we were getting VIX (ConId=13455763) historical 1 day data with Interactive Brokers:
We are executing a code similar to the following:
create_db(db_name, conids=[13455763], bar_size="1 day")
collect_history(db_name)
wait_for_collections(db_name)
download_history_file(db_name, filepath_or_buffer=outfilepath)
But 2016-07-15 date is missing from the result data. The final raw data, just after download_history_file, looks like:
13455763,2016-07-12,12.93,13.93,12.75,13.55,0,0.0,1143
13455763,2016-07-13,13.32,13.79,12.92,13.04,0,0.0,1105
13455763,2016-07-14,12.5,13.37,12.14,12.82,0,0.0,1246
13455763,2016-07-18,12.75,13.12,12.33,12.44,0,0.0,914
13455763,2016-07-19,12.53,12.83,11.94,11.97,0,0.0,863
As you can see 2016-07-15 is missing from the result. This execution was made at 2020-07-14 04:30 and again at 10:00 with the same result (US/Eastern).
According to the trading calendar does not look a non-trading day.
We also downloaded the same data from IB directly and this date is not missing there. Another providers like YahooFinance contain this date too.
We are downloading this data daily (4:00 US/Eastern) and we found that yesterday (2020-07-13) file contains this date.
Any explanation for this?