Hi all, if I return the open price of an equity (AAPL in this example) using history(bar_count=11, frequency='1d', field='open_price') it returns a value that differs from the historical data available via Google or Yahoo. The Close, Low and High are all accurate.
The table below shows the difference.
AAPL
Quantopian
Open = 111.38
High = 114.24
Low = 111.0
Close = 114.18
Google
Open = 111.41
High = 114.24
Low = 111.0
Close = 114.18
The same happens for all days. Any ideas what I'm doing wrong?
Richard