yahoo-finance Questions
4
For months I've been using a url like this, from perl:
http://finance.yahoo.com/d/quotes.csv?s=$s&f=ynl1 #returns yield, name, price;
Today, 11/1/17, it suddenly returns a 999 error.
Is thi...
Toniatonic asked 1/11, 2017 at 22:39
4
Solved
I have been using the following URL for the past 3 years without issue. However, it has stopped returning results.
URL:
https://query.yahooapis.com/v1/public/yql?q=select * from yahoo.finance.xcha...
Convector asked 2/11, 2017 at 9:53
3
Solved
I have been using the following command for a long time without problem:
spy <- read.csv("http://ichart.finance.yahoo.com/table.csv?s=SPY")
But in the past few days it started to throw the fo...
Veneration asked 20/4, 2017 at 21:6
8
Solved
I was using google finance api to get the stock quotes and display the contents on my site. All of a sudden from 6/september/2017 this stopped working. The url i used to get the stock quotes is htt...
Driblet asked 7/9, 2017 at 7:48
1
Below URL has stopped working from today. Any alternate ?
Get Quote from Google Finance
Brownell asked 6/9, 2017 at 9:30
1
Solved
I'm using the data of alpha vantage for a stock market analysis site. But I cannot find a complete list of symbols available ( to be used in a selection drop down ).
Mcmillan asked 1/8, 2017 at 20:30
3
I've been successful at downloading stock data from Google Finance, like so:
import pandas as pd
from pandas_datareader import data as web
import datetime
start = datetime.datetime(2016,1,1)
end ...
Pig asked 23/5, 2017 at 13:51
1
Solved
I'm trying to save the graphs of all 11 sectors from sectorlist to 1 pdf sheet. So far the code below gives me a graph on a separate sheet (11 pdf pages).
The daily return functions is the data I'...
Ozoniferous asked 18/7, 2017 at 3:58
7
Solved
I have used the following url to fetch the historical data from yahoo finance. From last 16th May, 2017 the url is not working.
http://real-chart.finance.yahoo.com/table.csv?s=AAL&a=04&b=0...
Nephritis asked 18/5, 2017 at 9:45
9
For quite some time I've been using the following REST API to query Yahoo finance for current prices. It is documented in several Stack Overflow posts, e.g. Yahoo finance webservice and elsewhere i...
Safekeeping asked 13/7, 2016 at 14:51
6
I'm trying to download data from Yahoo using this code:
library(quantmod)
getSymbols("WOW", auto.assign=F)
This has worked for me in the past in every occasion except now, 5 days before my group...
Folly asked 17/5, 2017 at 4:48
4
Solved
During the past 1-2 days, the http query that I used to download historical stock prices from Yahoo Finance has not been working. The link I have been using is the first one below but I have also t...
Phagocytosis asked 18/5, 2017 at 14:24
1
Solved
Yahoo finance recently discontinued their API. I have been looking for alternatives. The ones I've found so far are Google Finance and Quandl.
Google Finance was deprecated in 2011 but stil...
Alansen asked 18/5, 2017 at 13:8
1
Solved
Today, I was grabbing stock data using Python's pandas_datareader. Funny thing is it worked just several hours ago, but now I'm not able to grab stock data from yahoo-finance, but I can with ...
Harned asked 16/5, 2017 at 22:0
5
Solved
import datetime
import pandas.io.data
sp = pd.io.data.get_data_yahoo('^IXIC',start = datetime.datetime(1972, 1, 3),
end = datetime.datetime(2010, 1, 3))
I have used the above example, but that...
Taradiddle asked 14/12, 2013 at 14:43
3
Solved
I'm trying to plot a graph using dataframes.
I'm using 'pandas_datareader' to get the data.
so my code is below:
tickers = ["AAPL","GOOG","MSFT","XOM","BRK-A","FB","JNJ","GE","AMZN","WFC"]
impor...
Euphonize asked 12/3, 2017 at 5:38
1
Solved
The following call will search the Yahoo Finance API for stocks that have "Yahoo" in its name:
http://d.yimg.com/autoc.finance.yahoo.com/autoc?query=yahoo&region=US&lang=en-US&row=ALL...
Submerse asked 28/9, 2015 at 0:55
2
I'm using pyalgotrade for a trading strategy where I want to use multiple tickers in a list.
The way it is set up now, it runs the strategy for each individual ticker in the list, but what I want ...
Hydrophobic asked 7/12, 2016 at 0:32
2
Yahoo Finance changed its web page formats last week (again) and the data isn't copyable, downloadable, or scrapeable, since the data is apparently loaded indirectly. (I can see it in the debugger....
Guib asked 31/7, 2016 at 1:42
2
I've been trying to retrieve stock price from Yahoo! Finance, like for Apple Inc.. My code is like this:(using Python 2)
import requests
from bs4 import BeautifulSoup as bs
html='http://finance.y...
Whitworth asked 22/9, 2016 at 6:4
1
Solved
I'm running a program to pull some info from Yahoo! Finance. It runs fine as a For loop, however it takes a long time (about 10 minutes for 7,000 inputs) because it has to process each request.get(...
Reikoreilly asked 6/9, 2016 at 22:59
1
Solved
I'm trying to pull information from the 'Key Statistics' page for a ticker in Yahoo (since this isn't supported in the Pandas library).
Example for AAPL:
from bs4 import BeautifulSoup
import req...
Glynda asked 30/8, 2016 at 4:23
0
I am using the yahoo finance API to get the price quotes from the market that has closed. I usually run the API at about 11pm at night (USA time). The API will return today's market data some times...
Cushitic asked 27/8, 2016 at 3:51
1
Solved
What is the meaning of Volume in Yahoo Finance (web.DataReader(stock, 'yahoo', start, end))? Is it average daily trading volume or average dollar volume? Is it a number of shares or number of dolla...
Cassowary asked 23/7, 2016 at 18:45
4
Solved
I am trying to get realtime stock data from BSE and NSE using yahoo finance web-services. I was able to get some data using following URL
http://finance.yahoo.com/webservice/v1/symbols/COALINDIA.N...
Nun asked 18/12, 2014 at 9:57
© 2022 - 2024 — McMap. All rights reserved.