question

Upvotes
Accepted
48 2 4 11

1-min VOD.L data request through Summaries Stream is returning empty data table

Using the latest Refinitiv Data Library for .Net. If I request 1-minute data for VOD.L the data table is empty. The Raw property shows the JSON data is there but not in the table. Here's the code...

string symbol = "VOD.L";
var stream = Summaries.Definition(symbol)
                      .Interval(Summaries.Interval.PT1M)
                      .Fields("DATE_TIME", "OPEN_PRC", "HIGH_1", "LOW_1", "TRDPRC_1", "ACVOL_UNS")
                      .Sessions(sessionArray)
                      .Count(1250)
                      .GetStream();


// Specify the TSI lambda expressions to capture 'Insert' and 'Update' events
stream.OnInsert((data, stream) => Common.DisplayTable($"INSERT: {DateTime.Now}", data.Table))
      .OnUpdate((data, stream) => Common.DisplayTable($"UPDATE: {DateTime.Now}", data.Table))
      .OnStatus((status, stream) => Console.WriteLine($"Status: {status}"))
      .OnError((error, stream) => Console.WriteLine($"Error: {error}"))
      .Open();

Output:

1718999626778.png

If I change the lambda for OnInsert to:

Console.WriteLine(data.Raw)

the data is there.

#productprice-history
1718999626778.png (499.4 KiB)
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.

1 Answer

· Write an Answer
Upvotes
Accepted
237 4 2 3

Hello @cory.schmidt.1

I have fixed the issue and a new package (1.0.8) is available for download on BAMS.

You should receive an email containing the details.

Best regards,

Cristian

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.