Hi,
I'm testing a proprietary signal I've uploaded using "Self Serve" data utility.
The data has been formatted in a .CSV file and has been correctly loaded.
Now I need to retrieve pricing infos about many stocks, and some seems missing.
For instance, running this cell on the notebook:
start = "2014-10-20"
end = "2014-11-1"
prices = get_pricing("AA", start_date=start, end_date=end, fields="price")
prices
yields the following output
2014-10-20 00:00:00+00:00 NaN
2014-10-21 00:00:00+00:00 NaN
2014-10-22 00:00:00+00:00 NaN
2014-10-23 00:00:00+00:00 NaN
2014-10-24 00:00:00+00:00 NaN
2014-10-27 00:00:00+00:00 NaN
2014-10-28 00:00:00+00:00 NaN
2014-10-29 00:00:00+00:00 NaN
2014-10-30 00:00:00+00:00 NaN
2014-10-31 00:00:00+00:00 NaN
Freq: C, Name: Equity(50428 [AA]), dtype: float64