I'm seeing zero volume and no OHL prices for the last minute bar of the day when using:
https://www.quantopian.com/docs/api-reference/research-api-reference#quantopian.research.get_pricing
high = get_pricing(['SPY'],start_date='2020-04-09',end_date='2020-04-10',fields='high',frequency='minute')
low = get_pricing(['SPY'],start_date='2020-04-09',end_date='2020-04-10',fields='low',frequency='minute')
close = get_pricing(['SPY'],start_date='2020-04-09',end_date='2020-04-10',fields='close_price',frequency='minute')
volume = get_pricing(['SPY'],start_date='2020-04-09',end_date='2020-04-10',fields='volume',frequency='minute')
Is this expected? If minute bars are being returned, shouldn't the last minute bar be OHLCV for the last trading minute?