finnhub-python icon indicating copy to clipboard operation
finnhub-python copied to clipboard

Finnhub Python API Client. Finnhub API provides institutional-grade financial data to investors, fintech startups and investment firms. We support real-time stock price, global fundamentals, global ET...

Results 32 finnhub-python issues
Sort by recently updated
recently updated
newest added

All respond me `{'s': 'no_data'}`. ![image](https://user-images.githubusercontent.com/4510984/177316438-feec20d4-0587-4668-93c5-b0d9313a1d02.png)

![image](https://user-images.githubusercontent.com/4510984/163582851-8fc41fc1-0410-40c1-a29d-8ebd88d93ef1.png) And the other missing date: ### QQQ ![image](https://user-images.githubusercontent.com/4510984/163583653-0efc1db1-bf18-4ff1-8866-1ad7a4a35432.png) ### SPY ![image](https://user-images.githubusercontent.com/4510984/163583786-538c7b12-a755-407c-a72a-fb38d9649149.png)

I'm on the basic plan. If I make a call to get tick data I'm incorrectly rate limited to 60 requests/minute. If I change the API_URL to "https://tick.finnhub.io/api/v1" then I'm...

the API docs show the following example: ``` import finnhub finnhub_client = finnhub.Client(api_key="") print(finnhub_client.symbol_lookup('apple')) ``` with a sample response: ``` { "count": 4, "result": [ { "description": "APPLE INC", "displaySymbol":...

Is https://finnhub.io/api/v1/stock/symbol?exchange=US&token=... suitable to compile a master list? e.g. Any time the endpoint is queried, the returned list has all active US symbols in it? So that additional entries in...

As title, I've found quote endpoints which could get the close price/high price/low price/etc... data, but it remains the same value after I keep calling the API for a while....

New to Finnhub. I am running the following simple code and getting an error message. What is causing this? **CODE** import finnhub import time import datetime import pandas as pd...

Hi, I am trying to fetch the earning calendar using the "Earning Calendar" endpoint. In my example, I am fetching earning calendar for 26th Oct 2021. https://finnhub.io/api/v1/calendar/earnings?from=2021-10-26&to=2021-10-26&token=XXX ![image](https://user-images.githubusercontent.com/53155344/138794608-ae03610c-a46e-4f6e-b0a8-cbbf2f12ebac.png) It is...

MWE: `import finnhub` `from datetime import date` `stock = 'VTI'` `print(finnhub_client.stock_dividends(stock, _from="2019-01-01", to=date.today()))` returns `[]` `print(finnhub_client.stock_dividends(stock, _from="2018-01-01", to=date.today()))` returns `[{'symbol': 'VTI', 'date': '2018-06-22', 'amount': 0.6034, 'adjustedAmount': 0.6034, 'payDate': '2018-06-27', 'recordDate':...