nsepy get_history is returning an empty dataframe. What could be the reason for this?
I am using version 0.7(latest version)
from datetime import date,timedelta
from nsepy import *
end_day = date.today()
start_day = end_day - timedelta(2)
stock_price_df = get_history(symbol="SBIN", start= date.today() - timedelta(2), end= date.today())