investpy icon indicating copy to clipboard operation
investpy copied to clipboard

Financial Data Extraction from Investing.com with Python

Results 134 investpy issues
Sort by recently updated
recently updated
newest added

Code- ``` import investpy df = investpy.get_stock_historical_data(stock='AAPL', country='United States', from_date='01/01/2010', to_date='01/01/2020') print(df.head()) ``` Error- ``` ConnectionError Traceback (most recent call last) [](https://localhost:8080/#) in 4 country='United States', 5 from_date='01/01/2010', ----> 6...

bug
investing-error

Hello, **Before I begin, investpy is awesome & helped tremendously on one of my Data Science capstone projects; big fan of the work on investpy.** That said, **I am experiencing...

## 🐛 Bug Fixes - Both `get_stock_recent_data` and `get_stock_historical_data` have been fixed and using https://api.investing.com/api/financialdata/historical instead of https://www.investing.com/instruments/HistoricalDataAjax

investing-error

As I know, both get_stock_recent_data and get_stock_historical_data are fixed. But "get_currency_cross_historical_data" has same issue still. ``` import investpy yesterday = '19/07/2022' today = '20/07/2022' fx_df = investpy.get_currency_cross_historical_data(currency_cross='USD/KRW', from_date=yesterday, to_date=today) print(fx_df)...

Hi, Could you please check, getting "raise JSONDecodeError("Expecting value", s, err.value) from None json.decoder.JSONDecodeError: Expecting value: line 1 column 2 (char 1)" error when trying to get economic calendar. It...

Hi all, so far, if there is financial information missing e.g. earnings like in: https://www.investing.com/equities/glencore-financial-summary the investpy tries to convert them to float and raises an error, I've added a...

All of sudden every `investpy` retrieval functions stopped working today, throwing `ConnectionError`. Any idea what's happening? Example: ```python import investpy import pandas as pd df = investpy.get_stock_historical_data(stock='AAPL', country='united states', interval='Daily',...

Proposing an update to the Philippines stocks list. Generated end of February 2021. - Fixes #350 . I apologize for the mess.

A very good data collection solution with Investing.com but not enough , add please https://www.investing.com/earnings-calendar.

Hi guys, Yesterday I could retrieve the calender info with any issues, trying it this morning (same code), I received the following error below. How can I fix this? Traceback...