Team,
Our existing Realtime Refresh in Excel 2007 VBA code is not working in Win10 Office 365 environment because EIKON API - "AdfinX Real Time 6.0 Library " is not compatible with Win10 Office 365.
May I please except a resolution for this? help much appreciated
We are trying to fetch 02 types of requests:
- Refintiv Static data page (E.g. RIC page - "PULF" , Bostwana Govt bonds):
Snippet:
Dim rtList As AdfinXRtLib.AdxRtList
Set rtList = PLVbaApis.CreateAdxRtList
rpage="PULF"
rtList.Source = "IDN": rtList.RegisterItems rpage, "*"
rtList.StartUpdates RT_MODE_IMAGE
2. Refintiv realtime RIC fields (E.g. RIC page - "HICNH1MDF=ABCK" , HIBOR CNH submission):
Snippet:
Set rtList = PLVbaApis.CreateAdxRtList
Dim fields(2) As Variant: fields(0) = CF_BID: fields(1) = CF_DATE: fields(2) = CF_TIME
ric_ticker = "HICNH1MDF=ABCK"
rtList.Source = "IDN": rtList.RegisterItems ric_ticker, fields
rtList.StartUpdates RT_MODE_IMAGE
Thanks
Sandeep