0

In Python, we can download daily data (1 row for 1 day) from NSEpy using the below code:

from datetime import date
from nsepy import get_history
sbin = get_history(symbol='SBIN',
                   start=date(2015,1,1),
                   end=date(2015,1,10))

But I want to know how can we download Yearly and Quarterly Data.

By yearly I mean, 1 record showing OHLC for 1 year.

I know the data is readily available with NSE because we can check that on the NSE website. Link: https://www1.nseindia.com/products/dynaContent/equities/equities/histHighLowSearch.htm

Ash
  • 375
  • 1
  • 3
  • 14

0 Answers0