Discover Refinitiv
MyRefinitiv Refinitiv Perspectives Careers
Created with Sketch.
All APIs Questions & Answers  Register |  Login
Ask a question
  • Questions
  • Tags
  • Badges
  • Unanswered
Search:
  • Home /
  • Eikon COM /
avatar image
Question by Dawid.Wallat · Dec 23, 2016 at 07:55 AM · eikoneikon-data-apieikon-com-apiequities

Equity data in milliseconds.

Hello,

Is it possible to download the data for Equities (the Timestamp) so that it will show the miliseconds? We have the data, as you can see in the Time & Sales application.

I am checking right now VOD.L in the Time Sales app and I see the miliseconds.

Thanks and Regards,

Dawid

People who like this

0 Show 0
Comment
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

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

3 Replies

  • Sort: 
avatar image
REFINITIV
Best Answer
Answer by Alex Putkov.1 · Dec 27, 2016 at 02:16 PM

Hi Dawid,

You're right, it seems to be not quite as straightforward as I thought. It appears that for UK stocks in order to get the timestamps including milliseconds you need to include extended hours trades in the request. If you need to filter out extended hours trades, you can do it by setting up time restrictions for your request using From and To methods of ITimeSeriesDataRequestSetup interface. Here's an example code snippet.

private void RequestTimeseriesData()
{
	_timeSeriesRequest = _timeSeries.SetupDataRequest("VOD.L")
        	.WithInterval(CommonInterval.Tick)
                .WithFilter(filter => filter.IncludeOutOfSessionRecords(true))
                .WithNumberOfPoints(250)
                .OnDataReceived(ProcessReceivedData)
                .CreateAndSend();
}

private void ProcessReceivedData(DataChunk chunk)
{
	_trades.AddRange(chunk.Records.ToTickRecords());
        if (chunk.IsLast)
        {
        	foreach (var trade in _trades)
                {
                    DateTime timestamp = trade.Timestamp.Value;
                    double? lastprice = trade.Value;
                    double? volume = trade.Volume;
                    Console.WriteLine(timestamp.ToString("dd-MMM-yy HH:mm:ss:fff") + " " + lastprice.ToString() + " " + volume.ToString());
                }
	}
}

I hope this helps.

Alex

Comment
marcin.bunkowski

People who like this

1 Show 0 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

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

avatar image
REFINITIV
Answer by Alex Putkov.1 · Dec 23, 2016 at 05:23 PM

Hi Dawid,

Yes, it is possible. Using Eikon .NET SDK the timeseries of price history for stocks are returned with timestamps down to millisecond. For documentation and code samples see respective section on this portal.

Comment

People who like this

0 Show 0 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

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

avatar image
Answer by Dawid.Wallat · Dec 27, 2016 at 06:28 AM

Hello Alex,

We tried to make a code, but it only showed at the end .000 (miliseconds). We got times like 14:42:42.000 on all the available data.

Could you show us maybe a example code or something?

Thanks and Regards,

Dawid

Comment

People who like this

0 Show 0 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

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

Watch this question

Add to watch list
Add to your watch list to receive emailed updates for this question. Too many emails? Change your settings >
8 People are following this question.

Related Questions

Trouble getting DataApiUsageExampleTimeseriesData to run in visual studio 2015

.NET examples for getting basis,contract month and last values

Date flter Screener or RSearch

Listed companies at deutsche börse incl headquarter

Automating Excel Eikon data feed

  • Copyright
  • Cookie Policy
  • Privacy Statement
  • Terms of Use
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Alpha
  • App Studio
  • Block Chain
  • Bot Platform
  • Connected Risk APIs
  • DSS
  • Data Fusion
  • Data Model Discovery
  • Datastream
  • Eikon COM
  • Eikon Data APIs
  • Electronic Trading
    • Generic FIX
    • Local Bank Node API
    • Trading API
  • Elektron
    • EMA
    • ETA
    • WebSocket API
  • Intelligent Tagging
  • Legal One
  • Messenger Bot
  • Messenger Side by Side
  • ONESOURCE
    • Indirect Tax
  • Open Calais
  • Open PermID
    • Entity Search
  • Org ID
  • PAM
    • PAM - Logging
  • ProView
  • ProView Internal
  • Product Insight
  • Project Tracking
  • RDMS
  • Refinitiv Data Platform
    • Refinitiv Data Platform Libraries
  • Rose's Space
  • Screening
    • Qual-ID API
    • Screening Deployed
    • Screening Online
    • World-Check One
    • World-Check One Zero Footprint
  • Side by Side Integration API
  • TR Knowledge Graph
  • TREP APIs
    • CAT
    • DACS Station
    • Open DACS
    • RFA
    • UPA
  • TREP Infrastructure
  • TRKD
  • TRTH
  • Thomson One Smart
  • Transactions
    • REDI API
  • Velocity Analytics
  • Wealth Management Web Services
  • Workspace SDK
    • Element Framework
    • Grid
  • World-Check Data File
  • 中文论坛
  • Explore
  • Tags
  • Questions
  • Badges