For a deeper look into our Elektron API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
26 15 21 25

Streaming data is missing update events

Hi team,

I am trying to run MarketPrice code with Streaming enabled with the following request:

{
  "ID": 2,
  "View": [
    "BID",
    "BIDSIZE",
    "ASK",
    "ASKSIZE",
    "BID_ASK_DT",
    "VWAP",
    "TRDPRC_1",
    "ACVOL_1"
  ],
  "Key": {"Name": "/IBM.N"}
}

The refresh message looks like below:

[{
  "Type": "Refresh",
  "Fields": {
    "TRDPRC_1": 133,
    "ASKSIZE": 0,
    "VWAP": 133.3776,
    "ASK": 0,
    "ACVOL_1": 833842,
    "BID_ASK_DT": "2019-08-20",
    "BID": 0,
    "BIDSIZE": 0
  },
  "Qos": {
    "Rate": "JitConflated",
    "Timeliness": "Realtime"
  },
  "State": {
    "Stream": "Open",
    "Data": "Ok",
    "Text": "*All is well"
  },
  "PermData": "AwEBQBfA",
  "ID": 2,
  "SeqNumber": 15088,
  "Key": {
    "Service": "ELEKTRON_DD",
    "Name": "/IBM.N"
  }
}]

So I am expecting multiple events after it but looks like I get an update every 30 seconds or so. I see following sort of update messages:

"DoNotConflate": true,
  "DoNotRipple": true,
  "ID": 2,
  "SeqNumber": 45454,
  "UpdateType": "Multiple",

And when I read about UpdateType as "Multiple" , it says the response is filtered and conflated. But how to not do it and get all the events?

elektronrefinitiv-realtimeelektron-sdkstreaming-pricesupdate-message
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.

Upvote
Accepted
17k 80 39 63

Hi @bansalshah,

You are requesting for the delayed RIC "/IBM.N" which I believe provides data delayed by at least 15 minutes and will send out updates every 30 seconds or so as you observed. If you are interested in getting all events, you need to specify the realtime RIC "IBM.N" (no slash) - assuming you are permissioned for this.

Please note: when you are using the WebSocket interface, it provides a conflated service. I believe it is a 3 second trade-safe conflation which will conflate quotes but provide all trades.

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 @bansalshah,

Conflation is automatic if you are connecting using ERT in Cloud but optional if you are connecting to your own TREP.

Upvotes
24.4k 53 17 14

Hello @bansalshah

Do you connect and consume data from your local TREP server or ERT in Cloud server?

Please be informed that the Service that you are subscribing data to is also a factor that defines whether you will receive a conflated or tick by tick data.

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.

Thank you @nick.zincone.1 for the response. It seems that I do not have permission for the realtime RIC so have to work with the delayed RIC only.

Answering @Wasin Waeosri , I am consuming data on the ERT in Cloud Server. So from this service the data is always conflated per say?

Okay sorry did not see @nick.zincone.1 response in the comment above. Solved my doubts. Thank you @nick.zincone.1 and @Wasin Waeosri

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.