Why is my data frame empty? If I execute the get_history() function for stocks like SBIN, the code works. But it doesn't work for currency derivatives like USDINR.
pip install nsepy
from nsepy import get_history
from datetime import date
import matplotlib
usdinr = get_history(symbol="USDINR", start=date(2019,6,1),
end=date(2019,6,10), option_type="CE",
strike_price=69.25,expiry_date=date(2019,6,21))
print(usdinr)