I have history statements in an algorithm that get the info about SPY for the last few days. Here are the highs and lows for 5 days. In one case, the results disagree with results from both Yahoo & google.
DataFrame:
Equity(8554 [SPY])
2015-06-26 20:00:00+00:00 210.58
2015-06-29 20:00:00+00:00 208.82
2015-06-30 20:00:00+00:00 207.32
2015-07-01 20:00:00+00:00 208.03
2015-07-02 20:00:00+00:00 208.27
DataFrame:
Equity(8554 [SPY])
2015-06-26 20:00:00+00:00 209.16
2015-06-29 20:00:00+00:00 205.33
2015-06-30 20:00:00+00:00 205.28
2015-07-01 20:00:00+00:00 206.56
2015-07-02 20:00:00+00:00 206.81
On 2015-06-29 , Qunatopian returns a high of $208.82. But when I check Yahoo & Google I get $209.83 -- a whole dollar higher!
So why do the sources have different results for this data point??? Is this a fluke? Could there be "intentional" incorrect data? (I have heard of such things as a way to track where data comes from.) The open and close prices seem fine.
This makes it tough to debug and independently confirm results if the data is different!