yahoo-finance

Yahoo finance ichart service availability

匆匆过客 提交于 2019-11-29 15:03:14
Following Has Yahoo finance web service disappeared? API changed? Down temporarily? Now seems something wrong with a ichart service too: https://ichart.yahoo.com/table.csv?s=NFLX&a=0&b=1&c=2016&d=4&e=16&f=2017&g=h&ignore=.csv Any news from Yahoo! ? Closed by API key? Shutted down? Yahoo has officially confirmed that the Yahoo Finance API has been discontinued in the following thread in the Yahoo Help Community (see posts by username Nixon): https://forums.yahoo.net/t5/Yahoo-Finance-help/Is-Yahoo-Finance-API-broken/m-p/250503#U250503 There are already some excellent alternatives out there such

jfreechart crashes when using Yahoo Finance Quotes

和自甴很熟 提交于 2019-11-29 12:09:44
QUESTION RESOLVED: solution is changing to JFreeChart v1.0.15 I have a very peculiar problem. What I have set up is a file that sends a url request to the Yahoo Finance website and then uses the results to draw a JFreeChart in a JFrame. What I just can't get my head around is the following: For certain url requests, the JFrame crashes It starts, but only shows a white screen. Whereas for other requests, my program works fine. Example For example: This request: "http://ichart.yahoo.com/table.csv?s=GOOG&a=0&b=1&c=2011&d=6&e=24&f=2013&g=d&ignore=.csv"; works fine. But this request: "http://ichart

Downloading mutliple stocks at once from yahoo finance python

假如想象 提交于 2019-11-29 04:26:46
I have a question about the function of yahoo finance using the pandas data reader. I'm using for months now a list with stock tickers and execute it in the following lines: import pandas_datareader as pdr import datetime stocks = ["stock1","stock2",....] start = datetime.datetime(2012,5,31) end = datetime.datetime(2018,3,1) f = pdr.DataReader(stocks, 'yahoo',start,end) Since yesterday i get the error "IndexError: list index out of range", which appears only if I try to get multiple stocks. Has anything changed in recent days which I have to consider or do you have a better solution for my

Programmatically access Currency Exchange Rates from Yahoo Finance by Date

懵懂的女人 提交于 2019-11-29 02:38:36
问题 I found the answer to this question VERY useful, but I would like to also get exchange rates for dates in the past, not just today's exchange rates. I'm writing an iPhone app that uses the exchange rate to calculate money made from sales in different countries. Here's the example from the answer mentioned above to get today's echange rate for GBP to EUR: http://download.finance.yahoo.com/d/quotes.csv?s=GBPEUR=X&f=sl1d1t1ba&e=.csv Does anyone know how to do this for any other dates? THANK YOU!

Download history stock prices automatically from yahoo finance in python

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-28 15:06:55
Is there a way to automatically download historical prices of stocks from yahoo finance or google finance (csv format)? Preferably in Python. Short answer: Yes. Use Python's urllib to pull the historical data pages for the stocks you want. Go with Yahoo! Finance; Google is both less reliable, has less data coverage, and is more restrictive in how you can use it once you have it. Also, I believe Google specifically prohibits you from scraping the data in their ToS. Longer answer: This is the script I use to pull all the historical data on a particular company. It pulls the historical data page

Yahoo Finance API [closed]

久未见 提交于 2019-11-28 15:04:27
Q. Do Yahoo provides any Finance API? If yes, the what's the link to that API. IMHO the best place to find this information is: http://code.google.com/p/yahoo-finance-managed/ I used to use the "gummy-stuff" too but then I found this page which is far more organized and full of easy to use examples. I am using it now to get the data in CSV files and use the files in my C++/Qt project. Here's a simple scraper I created in c# to get streaming quote data printed out to a console. It should be easily converted to java. Based on the following post: http://blog.underdog-projects.net/2009/02/bringing

How to get a complete list of ticker symbols from Yahoo Finance? [closed]

こ雲淡風輕ζ 提交于 2019-11-28 14:59:43
I've googled endlessly for a method of getting a complete (and daily updated) list of all Yahoo ticker symbols available through http://finance.yahoo.com Yahoo has information for stocks, futures etc for a lot of exchanges worldwide, and I'd like a combined list of all the ticker symbols available through them. I've tried YQL but they have a "where symbol = (or in)" clause restriction so I cannot select * from symbols. So basically, getting detailed information for a single symbol or several symbols at one time is easy but I just can't seem to find out how to get a list of all available

JSON formatted stock quote API (live or historical)

自作多情 提交于 2019-11-28 14:52:13
问题 i am building a RESTful web app for myself and i'm interested in getting JSON-formatted stock data for free. I plan to use javascript for the client-side. Is there a free stock API that i can tap into, that does not return XML and does not use C#. EDIT: i found this JSON query...will it do the job? http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20where%20symbol%20in%20(%22YHOO%22%2C%22AAPL%22%2C%22GOOG%22%2C%22MSFT%22)%0A%09%09&env=http%3A%2F%2Fdatatables

Yahoo finance ichart service availability

北战南征 提交于 2019-11-28 08:19:27
问题 Following Has Yahoo finance web service disappeared? API changed? Down temporarily? Now seems something wrong with a ichart service too: https://ichart.yahoo.com/table.csv?s=NFLX&a=0&b=1&c=2016&d=4&e=16&f=2017&g=h&ignore=.csv Any news from Yahoo! ? Closed by API key? Shutted down? 回答1: Yahoo has officially confirmed that the Yahoo Finance API has been discontinued in the following thread in the Yahoo Help Community (see posts by username Nixon): https://forums.yahoo.net/t5/Yahoo-Finance-help

How to suppress cookie request

左心房为你撑大大i 提交于 2019-11-28 05:54:46
问题 I am using vba inside of Excel 2013 to scrape data off of Yahoo Option Contract and while I do get the data, I also get multiple requests to accept a cookie (see dialog below). I tried accepting this to see if it would prevent further popups but no such luck. How can I suppress the dialog? As an aside, I'm pretty sure there is an api for yahoo_option_contract that would serve up some cookie free xml but I couldn't get it to work. Can anyone verify that is does work and provide a link that