Using quantmod or tidy quant, it is possible to download stock price from a range of period. However, I am looking to add a stock price column to an existing data frame which has ticker and date in it. In google spreadsheet, there is a simple formula to find the stock price on a particular date.
=GOOGLEFINANCE("AMZN","price",date(2017,2,7))
However, in R, there seems to be no way to do it.
What I have is a data frame:
Date. Ticker. Revenue. Profit...
x. y z i
... ... ... ...
I need to add an additional column with stock price of y as on x, to get
Date. Ticker. Revenue. Profit... Price
x. y z I p (of y on x)
... ... ... ... ...
Is there anyway to do this?
You could use tiingo together with quantmod"(or tidyquant). I would expect yahoo to work as well, but when using yahoo I keep running into errors when using 1 day retrievals (shoddy work on the yahoo side of things).
Combining everything in a data.frame:
data: