Client is receiving correct value INDEX for FID 54 (LOTSZUNITS) both on RFA API (via TREP) and in...

Client is receiving correct value INDEX for FID 54 (LOTSZUNITS) both on RFA API (via TREP) and in Eikon quote, however they are not getting this value with Eikon API.

Best Answer

  • nick.zincone
    nick.zincone admin
    Answer ✓

    @GoGoGroundhog,

    The IMetadatRequest.GetCommonData provides well-defined meta data related to the timeseries data such as: Currency, Exchange, InstrumentType, etc. If you want to access all possible FIDS, including LOTSZUNITS, you will need to issue a different API call.

    Try:

    IRealtimeSingleDataRequest singleRequest = realtime.Request("BTCZ8", "LOTSZUNITS", data => Console.WriteLine(data)););

    Refer to the tutorials section within the .NET APIs for use in custom applications for both realtime and timeseries examples.

Answers