Hi,
While trying to compare a specific assets prices taken from Quantopian to real prices (taken from Yahoo) I find prices doesn't make sense.
I've checked the following asset ():
start = pd.Timestamp("2015-01-01")
test_pricing = get_pricing(symbols(2), start, start + pd.Timedelta(days=34), fields="close_price")
print test_pricing
And got:
2015-01-02 00:00:00+00:00 15.841
2015-01-05 00:00:00+00:00 15.612
2015-01-06 00:00:00+00:00 14.993
2015-01-07 00:00:00+00:00 15.252
2015-01-08 00:00:00+00:00 15.632
2015-01-09 00:00:00+00:00 16.001
2015-01-12 00:00:00+00:00 16.370
2015-01-13 00:00:00+00:00 16.440
2015-01-14 00:00:00+00:00 15.432
2015-01-15 00:00:00+00:00 15.133
2015-01-16 00:00:00+00:00 14.933
2015-01-20 00:00:00+00:00 15.332
2015-01-21 00:00:00+00:00 15.522
2015-01-22 00:00:00+00:00 16.001
2015-01-23 00:00:00+00:00 15.771
2015-01-26 00:00:00+00:00 15.682
2015-01-27 00:00:00+00:00 15.692
2015-01-28 00:00:00+00:00 16.001
2015-01-29 00:00:00+00:00 15.891
2015-01-30 00:00:00+00:00 15.821
2015-02-02 00:00:00+00:00 15.791
2015-02-03 00:00:00+00:00 16.320
2015-02-04 00:00:00+00:00 16.480
while in yahoo (https://finance.yahoo.com/quote/ARNC/history?period1=1419890400&period2=1423087200&interval=1d&filter=history&frequency=1d) prices ranges at around 35...
Any explanation for that?
Thanks,
Eran