Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 2 2

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.

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apitreprfa
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

move to Eikon Data APIs

@6063371 which Eikon API is the client using? Could you provide the RIC as well please?

Hi @6063371

Do you have any updates on this question?

Hello @6063371

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?

If so please can you click the 'Accept' text next to the appropriate reply. This will guide all community members who have a similar question.

Thanks,

AHS

Upvotes
Accepted
17.4k 82 39 63

@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.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hi Nick, thanks for your answer.
Our understanding was that the Eikon Timeseries API should actually supply this value in the GetCommonData field called "Unit", which appears to be an abstracted field derived from LOTSZUNITS.

Hi @GoGoGroundhog,

Where did you read the "Unit" was the "LOTSZUNITS"? The intellisense within the API simply states: "Gets the unit".

ahs.png (5.3 KiB)
Upvotes
1 0 2 2

My apologies for the delayed response as I was on a meeting. Client is using RFA API, sample RIC <BTCZ8>

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

@6063371 RFA is not an Eikon API. Besides, your question says that they see the values ok in the RFA and not in Eikon API.

@6063371,

Could you please review with the client the actual product they are using and update your question appropriately? Or perhaps have the client ask the question themselves. I was able to retrieve the data with RFA, EMA and the Eikon Data API.

Upvotes
87 10 13 14

It's about this method from Desktop.SDK.DataAccess.TimeSeries.Metadata.IMetadataService:

IMetadataRequest GetCommonData(string ric, Action<CommonMetadata> commonMetadataCallback, Action<TimeSeriesError> errorCallback);

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.