Stocks A to Z / Stocks B / Berkshire Hathaway (BRK.A)
No. of Recommendations: 5
I know GTR had a major blow up a bit ago. It seems like Robbie, et.al., have returned much of the functionality, thank you to whomever! Will yahoo ETFs and other funds be available again? I tried a couple of symbols like SPY and QQQ but I get "Historical data for ticker symbol 'BIL' could not be downloaded from Yahoo! Finance."
Thank you
Brian
No. of Recommendations: 1
My understanding is that changes made by Yahoo caused GTR to be unable to access/use the ticker data.
Smufty
No. of Recommendations: 3
You can still download historical data from yahoo, but it is very tricky. Took me a while to figure it out.
Problem last time was that once people figured it out, they posted it all over the internet. Which undoubtedly eventually caught Yahoo's attention.
Plus Yahoo is grubbing for money; they are putting more and more stuff behind a paywall.
No. of Recommendations: 1
Well that's too bad. What a great tool. Thank you for the news.
No. of Recommendations: 2
I always wondered by Yahoo was so generous with the data. The quant mod R package still gets Yahoo symbols, hopefully that'll continue.
No. of Recommendations: 3
Excellent suggestion! I use quantmod functions for other analysis - dont know why this slipped my mind.
I use Yahoo! sparingly - but its currently the ONLY free source for Russell ( the actual index - if you have historical data stored you can use IWM as a proxy)
Here's the code :
#install.packages("tidyquant") I commented it out - you will need to install if you dont have it already
library(tidyquant)
symbol="^RUT"
df <- tq_get(symbol, get = "stock.prices", from = "1980-01-01")
No. of Recommendations: 7
Google Sheets still access exchange data including Yahoo Finance (and others) behind the scenes through the Googlefinance function. You can get historical data for any time period with the command (admittedly somewhat cryptic) in a cell:
=query(GOOGLEFINANCE("YOURSYMBOL","PRICE",workday(today(),!ANEGATIVENUMBEROFLOOKBACKDAYS!),today(),"WEEKLY" OR "DAILY"))
FC
No. of Recommendations: 3
Google Sheets still access exchange data including Yahoo Finance (and others) behind the scenes through the Googlefinance function
Can it get adjusted price or only price?
Aussi
No. of Recommendations: 1
I'm not sure. I only really use history for indexes, which unless a miracle has happened, are not div-adjusted in GF. For the major indexes I follow I grab dividends over the specific timefrme from yahoo and calc the adjusted price.