Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 1 1

Not able to fetch NSE Derivative( ACC.NS,SBI.NS ) Tick history data using python api.

# Note: startdate and end date will be the current date.
# Require NSE derivative('ACC.NS','SBI.NS') contract with tick data for current date.


# MyCode:------
dScripts=['ACC.NS']
sfields=['Timestamp','Value',"Volume"] 
df =ek.get_timeseries(dScripts,sfields,start_date = "2020-09-25T09:00:00", end_date = "20
20-09-25T17:00:00",interval="tick")




eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apitick-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.

@ashish.shah

Thank you for your participation in the forum.


Is the reply below satisfactory in resolving your query?

If yes, please click the 'Accept' text next to the reply.

This will guide all community members who have a similar question.

Otherwise please post again offering further insight into your question.


Thanks,

AHS

Upvotes
Accepted
10.2k 18 6 9

@ashish.shah That is because all requests/returns are in GMT timezone. Please see this thread on how to programmatically convert to different timezones in python. I hope this can help.

dScripts=['ACC.NS'] 
df =ek.get_timeseries(dScripts,start_date = "2020-09-30T03:30:00", end_date = "2020-09-30T11:30:00",interval="tick") 
df



1601476343485.png (122.3 KiB)
1601476563288.png (117.5 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.

Upvotes
10.2k 18 6 9

@ashish.shah for tick data there are only 2 fields supplied Value and Volume. If you remove the fields parameter entirely you will default to all fields or alternatively remove the 'Timestamp' field.

dScripts=['ACC.NS']
df =ek.get_timeseries(dScripts,start_date = "2020-09-25T09:00:00", end_date = "2020-09-25T17:00:00",interval="tick")


1601456836860.png (78.5 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.

ok, thanks but it's not giving the whole day tick data.

if you noticed, it will give you from 09:00 Am to 11:12 AM, where I have given parameters from 09:00 to 17:00.

Can you please help to get the current date tick data of "ACC.NS" (09:00 AM to 17:00)

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.