☰
Login
Signup
Home
›
General
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
11K
All Categories
69
Node JS client
21
Go client
648
.Net API client
312
Kite Publisher
513
.Net / VBA / Excel (3rd party)
349
Algorithms and Strategies
837
Java client
844
API clients
368
PHP client
3K
Python client
298
Mobile and Desktop apps
1.1K
Market data (WebSockets)
2.7K
General
In this Discussion
January 24
Tamilhp
January 23
rambo
January 18
SRIJAN
Historical Data download for more than 2000 days
Tamilhp
January 18
edited January 18
in
General
I created a python program to automatically download and store data for any number of days, both intraday and daily.
Download it in the following GitHub repository and refer the instructions in the read.me and customize accordingly
https://github.com/Tamilhp/Zerodha-historical-data-download
Tagged:
historical data
SRIJAN
January 18
edited January 18
This is great. Nice Work. It was very hard to
download historical data for more than the limit set by KiteConnect before this. ThankYou..
rambo
January 23
what are these imports?
import pandas as pd
import datetime as dt
import numpy as np
Tamilhp
January 24
@rambo
pandas to download the data as dataframe...
datetime for enter the required dates
numpy for computation
Tamilhp
January 24
I am relatively an absolute beginner in both programming and algorithmic trading... Just started learning everything from scratch from Dec 2021.
Forgive me if there's any redundancy in my program. Suggestions are welcome
Sign In
or
Register
to comment.
download historical data for more than the limit set by KiteConnect before this. ThankYou..
import pandas as pd
import datetime as dt
import numpy as np
pandas to download the data as dataframe...
datetime for enter the required dates
numpy for computation
Forgive me if there's any redundancy in my program. Suggestions are welcome