-
Notifications
You must be signed in to change notification settings - Fork 390
Description
Hi! I'm using the code below but I receive the error below as well:
itsa = inv.get_stock_information(stock = "ITSA4",
country = "Brazil",
as_json = False)
RuntimeError Traceback (most recent call last)
Cell In[19], line 1
----> 1 itsa = inv.get_stock_information(stock = ticker,
2 country = "Brazil",
3 as_json = False)
File c:\Users\Salerno\OneDrive\Documentos\Private\Salerno\Pessoal\Cursos\analise_macro\indicadores_fundamentalistas.venv\Lib\site-packages\investpy\stocks.py:1356, in get_stock_information(stock, country, as_json)
1353 result.at[0, "Stock Symbol"] = stock
1355 if not path_:
-> 1356 raise RuntimeError("ERR#0004: data retrieval error while scraping.")
1358 for elements_ in path_:
1359 title_ = elements_[0].text_content()
RuntimeError: ERR#0004: data retrieval error while scraping.
requirements.txt
Best