☰
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
13.8K
All Categories
0
Incidents
152
Node JS client
39
Go client
791
.Net API client
378
Kite Publisher
537
.Net / VBA / Excel (3rd party)
457
Algorithms and Strategies
992
Java client
1.1K
API clients
402
PHP client
4K
Python client
346
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.3K
General
In this Discussion
January 2022
Tamilhp
January 2022
rambo
January 2022
SRIJAN
Historical Data download for more than 2000 days
Tamilhp
January 2022
edited January 2022
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 2022
edited January 2022
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 2022
what are these imports?
import pandas as pd
import datetime as dt
import numpy as np
Tamilhp
January 2022
@rambo
pandas to download the data as dataframe...
datetime for enter the required dates
numpy for computation
Tamilhp
January 2022
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