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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 0 0 0

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-apiworkspaceworkspace-data-apirefinitiv-dataplatform-eikonpythontick-data
icon clock
10 |1500

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

Upvotes
Accepted
6.7k 8 6 7

@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 5.0 MiB each and 10.0 MiB total.

Upvotes
6.7k 8 6 7

@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 5.0 MiB each and 10.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)

Click below to post an Idea Post Idea