When I use "get_pricing" to look back on the daily open price of the stock "AGN" from 2017-01-03 to 2017-09-08, I get different values for the daily open price compared to if I use "get_pricing" for just one specific day.
For example:
when using: get_pricing("AGN", start_date="2017-01-03", end_date="2017-09-08", frequency='daily', fields="open_price"), the daily open price on 2017-01-03 is $212.244
when using: get_pricing("AGN", start_date="2017-01-03", end_date="2017-01-03", frequency='daily', fields="open_price"), the daily open price on 2017-01-03 is $214.15
I have tested this out on a few other stocks and the same discrepancy occurs.