Rewrite tickers function to use most current ticket data from tiingo website

This commit is contained in:
Cameron Yick
2017-09-17 16:47:18 -04:00
parent 891de629ee
commit 502acd0650
4 changed files with 26 additions and 54279 deletions

View File

@@ -43,6 +43,10 @@ Now you can use ``TiingoClient`` to make your API calls. (Other parameters are a
# Get latest prices, based on 3+ sources, as CSV or JSON, sampled weekly
ticker_price = client.get_ticker_price("GOOGL", frequency="weekly")
# Check what tickers are available, as well as metadata about each ticker
# including supported currency, exchange, and available start/end dates.
tickers = client.get_stock_tickers()
# Get news articles about given tickers. Requires Pro account.
articles = client.get_news(tickers=['GOOGL', 'APPL'],
tags=['Bitcoin'],