question

Upvotes
Accepted
1 0 4 8

What message should I process for Trade, Quote & Correction?

I am subscribing all the securities of EMEA, approximately 62K. I only process following 3 types of UpdateMessage

/**

* Quote

*/

public static final int INSTRUMENT_UPDATE_QUOTE = 1;

/**

* Trade

*/

public static final int INSTRUMENT_UPDATE_TRADE = 2;

/**

* Correction

*/

public static final int INSTRUMENT_UPDATE_CORRECTION = 7;


Currently I am missing some trades &quotes.

Do you see, I need to process additional message type? Please comment.



elektronrefinitiv-realtimeelektron-sdkema-apirrtelektron-message-api
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 @mizanur.kazi

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

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,

AHS

1 Answer

· Write an Answer
Upvotes
Accepted
9.6k 10 7 7

Hello @mizanur.kazi

According to RDM Usage Guide of ETA Java(underlying API used by EMA), at Appendix A UpdateEventTypes, you can find the meaning of all update event types as shown below:

I am not the data specialist. Anyway from the description, UpdateEventTypes.QUOTES_TRADE(9) contains both trade and quote information. Hence, you may process this type as well. This event type is INSTRUMENT_UPDATE_QUOTES_TRADE(9) in EMA Java. From the table, you may add to process other event types according to your requirements.

Hope this help.


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.