All Projects → yahoofinancelive → yliveticker

yahoofinancelive / yliveticker

Licence: MIT License
Get market data from Yahoo Finance websocket in near-real time.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to yliveticker

Pytse Client
work with Tehran stock exchange data in Python
Stars: ✭ 130 (+44.44%)
Mutual labels:  stock-market, market-data, financial-data
dados-financeiros
Repositório de Fontes de Dados Financeiros do Brasil
Stars: ✭ 119 (+32.22%)
Mutual labels:  stock-market, market-data, financial-data
Yfinance
Download market data from Yahoo! Finance's API
Stars: ✭ 6,148 (+6731.11%)
Mutual labels:  market-data, financial-data, yahoo-finance
fhub
Python client for Finnhub API
Stars: ✭ 31 (-65.56%)
Mutual labels:  stock-market, financial-data
NSE-Stock-Scanner
National Stock Exchange (NSE), India based Stock screener program. Supports Live Data, Swing / Momentum Trading, Intraday Trading, Connect to online brokers as Zerodha Kite, Risk Management, Emotion Control, Screening, Strategies, Backtesting, Automatic Stock Downloading after closing, live free day trading data and much more
Stars: ✭ 78 (-13.33%)
Mutual labels:  stock-market, livedata
short-fork
Stock market helper: financial data, multipliers (PE, PS, PEG etc), insider selling, debt and short volume charts from various sources. All in one place!
Stars: ✭ 41 (-54.44%)
Mutual labels:  stock-market, financial-data
NasdaqCloudDataService-SDK-Java
Nasdaq Data Link provides a modern and efficient method of delivery for real-time exchange data and other financial information. This repository provides a Java SDK for developing applications using Nasdaq Data Link's real-time data.
Stars: ✭ 70 (-22.22%)
Mutual labels:  market-data, financial-data
rb3
A bunch of downloaders and parsers for data delivered from B3
Stars: ✭ 52 (-42.22%)
Mutual labels:  market-data, financial-data
mftool
Python library for getting real-time Mutual Funds data in India
Stars: ✭ 76 (-15.56%)
Mutual labels:  stock-market, market-data
alpha-vantage-cookbook
JavaScript examples to help you with accessing market data from https://www.alphavantage.co/
Stars: ✭ 97 (+7.78%)
Mutual labels:  stock-market, financial-data
SwiftYFinance
The best Yahoo Finance library with the power of Swift
Stars: ✭ 30 (-66.67%)
Mutual labels:  stock-market, yahoo-finance
intrinio-realtime-python-sdk
Intrinio Python SDK for Real-Time Stock Prices
Stars: ✭ 79 (-12.22%)
Mutual labels:  stock-market, market-data
intrinio-realtime-java-sdk
Intrinio Java SDK for Real-Time Stock Prices
Stars: ✭ 22 (-75.56%)
Mutual labels:  stock-market, market-data
Ta Rs
Technical analysis library for Rust language
Stars: ✭ 248 (+175.56%)
Mutual labels:  stock-market, market-data
IQFeed.CSharpApiClient
IQFeed.CSharpApiClient is fastest and the most well-designed C# DTN IQFeed socket API connector available
Stars: ✭ 103 (+14.44%)
Mutual labels:  stock-market, market-data
Sec Edgar Downloader
Download SEC filings from the EDGAR database using Python
Stars: ✭ 146 (+62.22%)
Mutual labels:  stock-market, financial-data
Stocksera
Web application that provides alternative data to retail investors
Stars: ✭ 426 (+373.33%)
Mutual labels:  financial-data, yahoo-finance
Simplestockanalysispython
Stock Analysis Tutorial in Python
Stars: ✭ 126 (+40%)
Mutual labels:  stock-market, financial-data
Sumzerotrading
A Java API for Developing Automated Trading Applications for the Equity, Futures, and Currency Markets
Stars: ✭ 128 (+42.22%)
Mutual labels:  stock-market, market-data
Stocky
Machine Learning Stock Trading Risk Analysis (Spring 2017)
Stars: ✭ 27 (-70%)
Mutual labels:  financial-data, yahoo-finance

Python package Upload Python Package

Live from Yahoo Finance

Get market data from Yahoo Finance websocket in near-real time. wss://streamer.finance.yahoo.com/

Setup

pip install yliveticker

pypi package home

Example

The following snippet prints out live metrics in console output. You can follow other symbols by providing them in ticker_names.

import yliveticker


# this function is called on each ticker update
def on_new_msg(ws, msg):
    print(msg)


yliveticker.YLiveTicker(on_ticker=on_new_msg, ticker_names=[
    "BTC=X", "^GSPC", "^DJI", "^IXIC", "^RUT", "CL=F", "GC=F", "SI=F", "EURUSD=X", "^TNX", "^VIX", "GBPUSD=X", "JPY=X", "BTC-USD", "^CMC200", "^FTSE", "^N225"])

Note Check trading hours for your market if you don't observe any live metrics

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].