Hi,
I'm using get_data function to pull index details with no problem until I need to grab the same data for a new index .HEDGEINDEX, in which case all I'm getting for this index is <NA>. Can anyone help me figure out a way to pull? Thanks.
Below is my code:
df_ric_ts, err_ric_ts = ek.get_data(
['.HEDGEINDEX', '.SPX'],
['TR.BIDPRICE.date; TR.BIDPRICE; TR.BIDPRICE(Curn=USD); '
'TR.CLOSEPRICE.date; TR.CLOSEPRICE; TR.CLOSEPRICE(Curn=USD); '
'TR.TotalReturnYTD; TR.TotalReturnMTD; TR.TotalReturnQTD; '
'TR.TotalReturn6Mo; '
'TR.CompanyMarketCap(CURN=USD); TR.PE; '
'TR.PriceToBVPerShare; TR.PriceToTangBVPerShare; TR.FwdPEG; TR.BasicNormalizedEps.date; '
'TR.BasicNormalizedEPS(CURN=USD); TR.LTDebtToTtlCapitalPct; TR.TtlDebtToTtlEquityPct; '
'TR.AvgDailyVolume3M'],
{'SDate': -5, 'EDate': 0, 'FRQ': 'M'})
print(df_ric_ts)
Below is the result, and as you can see, .HEDGEINDEX returns nothing, .SPX is fine.