nsepy
nsepy copied to clipboard
How to pull only " Close " price of the equity from get_history(symbol="XXX", start=date(2019,1,1), end=date(2019,6,31))
Please help in scrapping only close price of the equity between a period of time.
what you will get includes the ['Close'] price along with other information.
df = get_history("RELIANCE", start=date(2019,1,1), end=date(2019,6,31))
# df['Close'] is what you want