Questions tagged [yahoo-finance]

Yahoo! Finance is a service from Yahoo! that provides financial information. It is the top financial news and research website in the United States. PLEASE NOTE : THE RELATED API HAS BEEN DISCONTINUED BY YAHOO.

Yahoo! Finance offers information including stock quotes, stock exchange rates, corporate press releases and financial reports, and popular message boards for discussing a company's prospects and stock valuation. It also offers some hosted tools for personal finance management. Yahoo! Finance Worldwide offers similar portals localized to assorted large countries in South America, Europe, and Asia.

Its URL is https://finance.yahoo.com/

NOTE:

This service API has been discontinued by Yahoo. The API returns:

It has come to our attention that this service is being used in violation of the Yahoo Terms of Service. As such, the service is being discontinued. For all future markets and equities data research, please refer to finance.yahoo.com.

1319 questions
-2
votes
2 answers

Issue on using Yahoo! Web Services and APIs(YQL)

I am using Yahoo Api and Web Services.. For example: http://query.yahooapis.com/v1/public/yql?q=select symbol,DaysLow,DaysHigh,PreviousClose from yahoo.finance.quotes where symbol in…
Surya
  • 439
  • 3
  • 9
  • 31
-2
votes
1 answer

Financial Statements from Yahoo-Managed

is there a way to get Balance Sheet / Income Statement / Etc out of Yahoo-Managed? Anyone know any alternatives if there isn't?
user1167650
  • 3,177
  • 11
  • 34
  • 46
-3
votes
1 answer

BeautifulSoup does not return the full HTML, can you tell me how I can fix this?

I am trying to get the ESG data from the Yahoo Finance website but the BeautifulSoup function does not seem to identify the entire html script? import requests from bs4 import BeautifulSoup url =…
-3
votes
1 answer

Importing latest stock price from Yahoo Finance into Python

I'm using the following source to import fundamental data: data = si.get_stats_valuation(symbol) data 0 Market Cap (intraday) 5 1.69T 1 Enterprise Value 3 1.71T 2 Trailing P/E 58.08 3 Forward P/E 1 …
Vidushi
  • 23
  • 5
-3
votes
1 answer

Yahoo Finance Download Specific Data Python PE

I am trying to webscrape some basic fundamental data in Yahoo. I used to be able to do it with BeautifulSoup. Somehow it doesn't work. Is it a time to use Selenium? url = https://finance.yahoo.com/quote/2638.HK/key-statistics?p=2638.HK How do I grab…
MK Mou
  • 29
  • 4
-3
votes
2 answers

Yahoo Finance cant be read

I am a user of the Yahoo Finance API. I have recently be recieving errors saying that the program is unable to read the website. Here is the error message: Pls note I am using Pandas Datareader for this. Traceback (most recent call last): File…
Viharo
  • 40
  • 7
-3
votes
1 answer

Very new to python and struggling to use this API

How do I extract a specific data point from the "ticker.financials". Say I wanted to assign operating income in 2020 on that chart to "Operating_Income" import pandas_datareader.data as web import datetime import requests import yfinance as…
-3
votes
1 answer

How do I use the yfinance API in Python to get today's DJI open?

How do I use the yahoo finance API to get the day's DJIA open each day? when I use import yahoo_finance dji = Share('dji') DJIA = dji.get_open() print(DJIA) it gives error on the second line
Tuor
  • 875
  • 1
  • 8
  • 32
-3
votes
2 answers

How to scrape data other then stock data from yahoo finance

I'm wanting to scrape data on different shoe companies. I am trying to scrape the EPS from yahoo-finance however I cant find anywhere how to do this. The only way I see so far is finding stock data as open,close etc. How can I scrape data from…
user218030
  • 107
  • 3
  • 12
-3
votes
4 answers

Alternative to yahoo finance api

I am new to yahoo finance api. I am also a beginner investor. I always use yahoo finance api to keep track of my investment portfolio. But it does not work recently due to yahoo stopping this service. Will you kindly share any alternatives for me?…
koky
  • 31
  • 1
  • 2
  • 8
-4
votes
1 answer

Datagridview filter with numbers saved as string

I have a datagrid filled that shows yahoo finance data. The data is loaded via a csv. The datagrid has columns with text and numbers. All data, text and numbers, are shown in string. Now I want to filter one a column that has numbers by the size of…
crazyD
  • 1
-4
votes
1 answer

is there a way to use yahoo finance API in php

I want to show actually a change of stock exchanges from yahoo, like in left top of the page, Dow 0.62% Nasdaq 0.54% in the below mentioned url http://finance.yahoo.com/q?s=API I want to collect top 10 stock exchange rates. I saw their API…
mobi001
  • 517
  • 1
  • 8
  • 19
-7
votes
1 answer

Is it possible to extract everyday stock closing price in Python and store them to Excel?

Is it possible to extract closing prices of stock market and dynamically write them into an excel sheet using python? Example: Can I get GOOG, AAPL, MSFT, AMZN everyday closing stock prices from Google-Finance or Yahoo!-Finance and write them…
SandB
  • 11
  • 4
1 2 3
87
88