I am facing data issues with specific ISIN
eikon.get_symbology(['INE116A01024'], from_symbol_type="ISIN", to_symbol_type="RIC")errorINE116A01024 No best match available
There is no ambiguity when selecting from Eikon Terminal
With bestmatch=False it returns many matches which is not as indicated on Eikon Terminal
eikon.get_symbology(['INE116A01024'], from_symbol_type="ISIN", to_symbol_type="RIC",bestMatch=False)
RESULT:
RICs ... symbol
INE116A01024 [APCI.NS, APCI.BO, APCIqf.BO, APCI.NSf, APCIau... ... INE116A01024
Also,
Facing issue getting price for a specific RIC
eikon.get_data(['TNVE.NS'],['TR.CLOSEPRICE.date','TR.CLOSEPRICE(Adjusted=0)'],{'SDate': previous_day.strftime('%Y-%m-%d'), 'EDate': current_day.strftime('%Y-%m-%d') ,'FILL':'PREVIOUS'})
RESULT:
( Instrument Date Close Price
0 TNVE.NS NaN NaN, None)
Here
previous_daydatetime.datetime(2013, 12, 31, 16, 30)
current_daydatetime.datetime(2014, 1, 1, 16, 30)
Please help as normal support is redirecting this data question towards the API forum.