Hi
import eikon as ek
req = ek.get_timeseries(["MSFT.O"], start_date = "2017-03-01",
end_date = "2017-03-10", interval="hour")
EikonError: Error code -1 | MSFT.O: No data available for the requested date range
Can someone please explain why I got an error in the above code?
When I changed the interval = "daily", the code ran ok, I understand daily is the default value also. But, it seemed anything lower than daily, i.e. hour, minute, tick, all gave me the same error.
What's the reason that I couldn't go more granule than daily?
Thanks
Eric