[EMA C++] Is there any data dictionary for chain field

I develop with EMA C++,and decode the chain, I want to konow the data type of the chain field

I can get the Field 804;

I can not decode the Field 239.

which shows as the pic.

So, I want to get the data dictionary of chain Field, which will show the ditail of every Field

image

Best Answer

  • @luxiangyuan

    You can find field definition for any field from file RDMFieldDictionary locates under a folder named "etc" from EMA package. REF_Count use UInt64 according to the Dict so that you have to use fe.getUint() to get the data accordingly.

    Consumer example such as 200__MarketPrice__Streaming also provide sample codes to get the data accroding to data type returned by fe.getLoadType().

Answers