Questions tagged [tiingo]

For questions related to the tiingo financial markets API.

Documentation

API Wrappers / Libraries

  • Hydrosquall: Tiingo Python
    • Stock Market Ticker Closing Prices + Metadata. Data includes full distribution details and is validated using a proprietary EOD Price Engine.
    • Curated news from top financial news sources + blogs. Stories are tagged with topic tags and relevant stock tickers by Tiingo's algorithms.
15 questions
4
votes
2 answers

Connect to Rest API in R with key

this is a simple question, but one that I still can't figure out. I want to connect to a REST API with my API key. I've looked through the documentation on httr, jsonlite and others and still can't figure out how to set the API key. This is the…
Jared Marks
  • 948
  • 8
  • 15
1
vote
1 answer

Tiingo Client API is pulling data outside of range by date

startDate = '2018-06-12 00:30:00' endDate = '2019-06-12 17:35:00' articles = client.get_news(tickers=['GOOGL'], sources=['washingtonpost.com'], startDate = startDate, …
sinkiez
  • 41
  • 5
0
votes
0 answers

How to correctly handle "ERROR:root:b'{"detail":"Error: Ticker \'SREF\' not found"}"?

So I'm making a program that calculates the dividend amount per share and closing price of a stock, which the user inputs. Right, now, I'm in the middle of putting some input validation just in case I, or someone else, accidentally make a typo. The…
0
votes
1 answer

Tiingo Data Reader

I was developing a price prediction model that requires Tiingo but there seems to be problem in the API authentification. I used the OS access the Tiingo API. ` api_key =os.environ.get('TIINGO_API_KEY') df=pdr.get_data_tiingo('AAPL',api_key) …
0
votes
1 answer

python - read data from API and save into dataframe

I am trying to read a list of stock ticker and get price from Tiingo, but it reads only the last item "MO" and save into dataframe "data". how can I get the price for a full list? thanks. lis=[…
rosicky08
  • 3
  • 1
0
votes
2 answers

How do I setup my Tiingo API key in pandas?

I am trying to learn ML models for predicting stock prices and initially, I tried using DataReader import pandas_datareader as web df = web.DataReader('AAPL', data_source='yahoo', start='2016-01-01', end='2021-08-01') But I get a RemoteDataError…
0
votes
0 answers

Plotly Dash: Charts don't update when button is pressed

After changing the stock ticker the user should be able to press the enter button to have the graph change to display the new tickers data. The graph will update once I interact with it such as zooming in so I know the data is being updated but for…
0
votes
1 answer

How to get real time quote from Tiingo

I am trying to get the updated quotes of cryptocurrencies from Tiingo using this code: library(tidyquant) tiingo_api_key('') prices.hour <- tq_get(c('adausd', 'ethusd', 'xrpusd'), get = "tiingo.crypto", from …
Sal
  • 117
  • 12
0
votes
1 answer

Python 3.9.1 API call to Tiingo failing on certain tickers

Thank you in advanced for any insights you can offer to my current challenge. I am running Python 3.9.1 and the latest versions of PANDAS and TIINGO libraries. The problem is a reliable API call has started failing for certain tickers. I assume…
0
votes
2 answers

Python: pandas data_reader -> plotly candelstick graph not recognizing date column from tiingo stock data api import

The task was to import stock data from tiingo api via pandas data_reader within a certain date range and then plot it into a candle stick graph. The import works. However the plotting is not recognizing the "date" as x axis variable. See the error…
0
votes
1 answer

State does not update until button is pressed twice

I am trying to learn and work with APIs, I am using the Tiingo Stock API to get stock info. My current app is: class _StockAppState extends State { String out = "Enter Ticker and press Submit"; Map headers = { …
Shiv Patel
  • 23
  • 6
0
votes
1 answer

Python - how to include each stock ticker in a new column

I just started python two weeks ago and have looked into a code to get stock data from Tiingo. I managed to get all the data i need from running the below code. However, i cannot seem to include the actual stock 'ticker' in the output in excel.…
TS-NL
  • 1
0
votes
1 answer

Pandas Data Reader Tiingo Errors when pulling multiple symbols if one symbol does not exist or is delisted

I am writing an app to track stock data entered into a spreadsheet. I currently have it working by making a call to pandas_datareader.tiingo.TiingoDailyReader for every symbol. The data reader is capable of taking a list of symbols and pulling all…
Talon06
  • 1,756
  • 3
  • 27
  • 51
0
votes
0 answers

How can I make a Pandas Series with a MultiIndex axes value take a DatetimeIndex for reindexing?

Still a bit new to Pandas so I am trying to follow this tutorial here: https://www.learndatasci.com/tutorials/python-finance-part-yahoo-finance-api-pandas-matplotlib/ However, it seems a bit dated and I had to convert the data feed to pull from…
grg-n-sox
  • 717
  • 2
  • 5
  • 25
-2
votes
1 answer

Scraping tiingo HTML with Beautiful Soup

I am looking to scrape financial data for various companies in the S&P 500 from their respective webpages on tiingo.com For example, take the following URL: https://www.tiingo.com/f/b/aapl which displays the most recent balance sheet data for…
chumski
  • 1
  • 2