Initial Data SetI have over a thousand Stock Tickers, and corresponding IPO Dates. I would like use a loop to go through each stock ticker and find the Open Price for the IPO date. I can currently do this with quantmod. getSymbols(), but it downloads the entire data set, I can limit the data to a time frame, but it wont let me do this ex.
getSymbols('AAPL', from = '2017-02-02', to = '2017-02-02')
For some reason this wont return the first price. It requires a bigger time frame, and I only care about the first Open Price. The end output would be to add a third column to my existing data frame, the third column would be the first price. I am really trying to avoid downloading thousands of Stocks data because then it would run forever. Any help downloading the first Open Price and then putting that price into a data frame for all of the Tickers would be greatly appreciated.