Jinit Shah

Results 8 comments of Jinit Shah

Hi @maheshgune, For JSWENERGY, the site doesn't have the data. The last date which has data is 7-28-2021 if you change the range below to 365 days. For the first...

@kanishk619 thanks for the suggestion. Need to change Series=All in the URL to allow different series types. We can probably take a specific type as input as well and by...

@tsdev-we, you can use ```python from NSEDownload import stocks df = stocks.get_adjusted_stock(stockSymbol = 'ABBOTINDIA', start_date = '2-7-2021', end_date = '7-8-2022', check_stockSymbol=False) ```

Hi @maheshgune, I have made a few changes to allow all series, I shall push them soon.

@maheshgune, please take a look at the [new branch](https://github.com/NSEDownload/NSEDownload/tree/new_series_feature) and install it. Use the new parameter series and set it to all. Currently, it only takes a string value. ```python...

> Check fist iteration. Following observation. > > 1. Works neatly. > 2. Initially it gave some problem of Time out (20 seconds). Then modified one of .py file of...

@maheshgune, Thank you so much. I have added retries and backoff in the new commit. It does seem a lot better. Let me know after your weekend run. Hopefully, more...

Hi @harshkumarchourasia, The extra space between NIFTY and 50 is causing a problem. Replace it with: ```python df = indices.get_data(index_name="NIFTY 50", start_date="09-01-2017", end_date="14-08-2019") ``` I shall make the changes in...