I am actively using the fixed yahoo finance module by Ran Aroussi (https://pypi.python.org/pypi/fix-yahoo-finance) to gather (daily) stock quotes. This is done by the following piece of code:
data = yf.download(ticker, start=start_date, end=end_date)
My question is though, is there an efficient way to get all the available data without providing a start date and end date?
So as an example, suppose MSFT would have data over a period span of 1990 - now, I'd like to get all this data, without having to provide a start date in 1990.