I have been the Eikon's Streaming Data API for the past year and a half when it suddenly started returning <NA> for all the symbols and attributes a few days ago. The following test code exhibits the same behavior:
import eikon as ek
ek.set_app_key(appKey)
ek.__version__
sp = ek.StreamingPrices(instruments = ['XOM'],
fields = ["CF_BID","CF_ASK",'CF_LAST', 'TRDPRC_1', 'HST_CLOSE'])
sp.open()
sp.get_snapshot()
The response is:
Instrument CF_BID CF_ASK CF_LAST TRDPRC_1 HST_CLOSE
0 XOM <NA> <NA> <NA> <NA> <NA>
The eikon version I am using is 1.1.14
Please advise.
Thanks,
Matt