All Projects → sapphire-ko → cryptocurrency-ticker

sapphire-ko / cryptocurrency-ticker

Licence: MIT license
Get the current ticker information for cryptocurrencies

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to cryptocurrency-ticker

coinget
**deprecated API (no longer works)** The fastest cli 💻 price checker for cryptocurrencies📈
Stars: ✭ 27 (+125%)
Mutual labels:  ticker
TerminalStocks
Pure terminal stock ticker for Windows.
Stars: ✭ 88 (+633.33%)
Mutual labels:  ticker
dynamic-marquee
A small library for creating marquees.
Stars: ✭ 64 (+433.33%)
Mutual labels:  ticker
cryptocoins-desklet-cinnamon
Cryptocurrency Ticker (Desklet) for Cinnamon Desktop that displays the current price for thousands of cryptocurrencies, and their daily percent changes.
Stars: ✭ 18 (+50%)
Mutual labels:  ticker
CryptoTickerBot
A .NET Core program to fetch ticker data from various crypto exchange websites.
Stars: ✭ 30 (+150%)
Mutual labels:  ticker
LOC-Extension
LibreOffice Cryptocurrency extension
Stars: ✭ 33 (+175%)
Mutual labels:  ticker
Coinmon
💰 The cryptocurrency price tool on CLI. 🖥
Stars: ✭ 1,581 (+13075%)
Mutual labels:  ticker
Ticker
Terminal stock ticker with live updates and position tracking
Stars: ✭ 3,986 (+33116.67%)
Mutual labels:  ticker
raf-perf
RAF loop with an adaptive fps and performance ratio calculated from either a sample count or a sample duration. Typically used when doing intensive graphics computation in canvas.
Stars: ✭ 40 (+233.33%)
Mutual labels:  ticker
Covid19Tracker
A Robinhood style COVID-19 🦠 Android tracking app for the US. Open source and built with Kotlin.
Stars: ✭ 65 (+441.67%)
Mutual labels:  ticker
barbar
DEPRECATED — OSX crypto-currency price ticker
Stars: ✭ 55 (+358.33%)
Mutual labels:  ticker
smoovy
A collection of small and useful js packages (smooth scrolling, utils, etc.) preventing copy & paste
Stars: ✭ 25 (+108.33%)
Mutual labels:  ticker
coinbash
💰 A bash script (CLI) for displaying crypto currencies market data in a terminal 🖥
Stars: ✭ 110 (+816.67%)
Mutual labels:  ticker
HTML-Crypto-Currency-Chart-Snippets
💹 Simple HTML Snippets to create Tickers / Charts of Cryptocurrencies with the TradingView API 💹
Stars: ✭ 89 (+641.67%)
Mutual labels:  ticker
raf-interval
setRafInterval and clearRafInterval with requestAnimationFrame - 40行代码实现的高性能动画定时器
Stars: ✭ 77 (+541.67%)
Mutual labels:  ticker
bitprice-ios
iOS app for display and monitor the current Bitcoint (BTC) rate.
Stars: ✭ 38 (+216.67%)
Mutual labels:  ticker
btc-ticker-esp8266
realtime bitcoin price on 7 segment display with arduino on esp8266
Stars: ✭ 18 (+50%)
Mutual labels:  ticker
crypto-cli
The best cryptocurrency price CLI written in one line 💰
Stars: ✭ 18 (+50%)
Mutual labels:  ticker
i3blocks-crypto
💵 View your favorite coins' ticker prices with i3blocks.
Stars: ✭ 30 (+150%)
Mutual labels:  ticker

cryptocurrency-ticker

Get the current ticker information for cryptocurrencies

Install

$ npm install -S cryptocurrency-ticker

Usage

const ticker = require('cryptocurrency-ticker');

ticker.availableExchanges().then((exchanges) => {
	console.log(exchanges);
});

ticker.availablePairs('kraken').then((pairs) => {
	console.log(pairs);
}).catch((err) => {
	console.error(err);
});

ticker.ticker('kraken', 'eth_jpy').then((ticker) => {
	console.log(ticker);
}).catch((err) => {
	console.error(err);
});
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].