Hello, I am creating a nec Winform application which consumes Eikon API. Right now I want to retrieve the BID and ASK price with a single request but it's not working, below the code I used :
m_adxRtList.Source = "IDN";
m_adxRtList.RegisterItems(String.Join("," , entries.ToArray()), "ASK,BID");
m_adxRtList.StartUpdates(RT_RunMode.RT_MODE_ONUPDATE);
P.S. The request above retrieve only the BID price.