Hi
I am not able to retrieve these data from EIKON (None values)
IR =[
'EURSWFSR','EUR1MFSR','EUR2MFSR','EUR3MFSR','EUR6MFSR','EUR1YFSR','EURLIBOR',
'JPYSWFSR','JPY1MFSR','JPY2MFSR','JPY3MFSR','JPY6MFSR','JPY1YFSR',
'CHFSWFSR','CHF1MFSR','CHF2MFSR','CHF3MFSR','CHF6MFSR','CHF1YFSR','USDSOFR',
'USDSWFSR','USD1MFSR','USD2MFSR','USD3MFSR','USD6MFSR','USD1YFSR',
'GBPSWFSR','GBP1MFSR','GBP2MFSR','GBP3MFSR','GBP6MFSR','GBP1YFSR',
'EONIA','EURIBORSWD', 'EURIBOR1MD', 'EURIBOR2MD',
]
streaming_prices_ir = rdp.StreamingPrices(
universe =[c+'=' for c in IR] ,
fields = ['PRIMACT_1'],
on_complete = lambda streaming_prices :
create_dataframe(streaming_prices),
on_update = lambda streaming_prices, instrument_name, fields :
update_dataframe_ir(streaming_prices, instrument_name, fields)
)