I'm attempting to access all futures contracts traded for a given day. Reading the Quandl blog: https://blog.quandl.com/api-for-futures-data to access futures contract use the python code:
quandl.get('CHRIS/CBOE_VX5', start_date='2020-04-20', end_date='2020-04-30')
where:
{CBOE} is the acronym for the futures exchange
{VX} is the futures ticker code
Using
quandl.get('CHRIS/CBOE_VX5', start_date='2020-04-20', end_date='2020-04-30')
the following dataset is returned:
How to access the buy and sell trades for each contract? The above dataset provides details for futures per day, but does not provide any details relating to the individual contracts, is this data available via Quandl or some other data provider?
