yfinance Questions
7
I'm using Mac OS and receiving an error when doing the following:
import pandas as pd
import yfinance as yf
from yahoofinancials import YahooFinancials
ModuleNotFoundError: No module named 'yfina...
13
import yfinance as yf
stock = yf.Ticker("ABEV3.SA")
data1= stock.info
print(data1)
There is "bid" and "ask", but no actual stock price.
Pierrepierrepont asked 8/4, 2020 at 15:29
1
The Yahoo website can open via port 2081 in a browser (set proxy port 2081 for HTTP and HTTPS in Firefox). Port 2081 provides an HTTP(S) proxy.
Port 2080 provides a SOCKS5 proxy service:
url="...
Oesophagus asked 1/1 at 1:1
5
I'm new with python and im trying to install the module of yfinance for my uni class, but I keep getting this error when trying to install it... anyone knows how to solve this problem?enter image d...
Debit asked 6/6, 2023 at 22:25
3
I'm getting the following error when trying to download stock price data from yahoo finance using the yfinance package: OperationalError('unable to open database file')
It seems the prices are just...
Unshapen asked 22/9, 2023 at 14:50
5
Trying to install lxml on Python 311. Faced with this error.
PS C:\Users\chharlie\Desktop\code> pip install lxml
Collecting lxml
Using cached lxml-4.9.1.tar.gz (3.4 MB)
Preparing metadata (set...
Reld asked 6/11, 2022 at 1:38
2
I use the Python package yfinance to get the historical stock prices of a stock (in this example, Tesla's stock).
When I do the following, and fetch the stock price for the last week as one minute ...
3
Solved
It had been working all the time before today.
I don't know why it doesn't work today.
import yfinance as yf
df = yf.Ticker('MMM').history(start='2021-01-01',end='2021-07-10')
File "D:\anacon...
8
I have been using yfinance for the last several weeks to pull historical data on a number of stocks. I normally run the program at the end of each week to store data for that week, but this problem...
Vidicon asked 10/7, 2021 at 19:46
4
Solved
I have a list of tickers (tickerStrings) that I have to download all at once. When I try to use Pandas' read_csv it doesn't read the CSV file in the way it does when I download the data from yfinan...
Dice asked 27/7, 2020 at 1:41
5
Solved
yfinance and yahoo_fin no longer seem to work in their entirety.
Is anyone else experiencing this problem with no financial data for any company using these packages?
Does anyone know if these have...
Hampson asked 2/7, 2021 at 1:9
3
Solved
I am scraping stock market data from yfinance. My code worked perfectly during the last weeks. For some reason, now I am receiving the following error:
json.decoder.JSONDecodeError: Expecting valu...
1
Solved
I have the ISIN, the Ticker symbol (without suffix, e.g. for Samsung 005930 and not 005930.KS) and the country name. When I go to the Yahoo Finance website I am able to search with the ISIN and I g...
Rios asked 25/6, 2020 at 7:44
1
Solved
I'm trying to download the historical data for a list of tickers and export each to a csv file. I can make this work as a for loop but that is very slow when the list of stock tickers is in the 100...
Xylon asked 5/3, 2020 at 16:59
1
I found library that allows me to get data from yahoo finance very efficiently. It's a wonderful library.
The problem is, I can't save the data into a csv file.
I've tried converting the data to ...
Latour asked 26/6, 2019 at 23:35
1
© 2022 - 2024 — McMap. All rights reserved.