All Projects → coinconvert → crypto-convert

coinconvert / crypto-convert

Licence: GPL-3.0 license
Instantly convert cryptocurrency and get price information

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to crypto-convert

Opencx
An open-source cryptocurrency exchange toolkit for implementing experimental exchange features
Stars: ✭ 86 (+230.77%)
Mutual labels:  crypto, exchange, cryptocurrency-exchanges
Multicurrencywallet
Bitcoin, Ethereum, ERC20 crypto wallets with Atomic Swap exchange. Release announce: https://twitter.com/SwapOnlineTeam/status/1321844352369500160
Stars: ✭ 136 (+423.08%)
Mutual labels:  crypto, exchange
Cryptocurrency Portfolio
Google Sheets automatic creation with Google Apps Script (GAS) for managing a cryptocurrency tracking spreadsheet with multi exchanges
Stars: ✭ 134 (+415.38%)
Mutual labels:  crypto, exchange
Socktrader
🚀 Websocket based trading bot for 💰cryptocurrencies 📈
Stars: ✭ 152 (+484.62%)
Mutual labels:  crypto, exchange
Ccxt.net
CCXT.NET – CryptoCurrency eXchange Trading Library for .NET
Stars: ✭ 89 (+242.31%)
Mutual labels:  crypto, exchange
Kupi Terminal
Ccxt based, open source, customized, extendable trading platform that supports 130+ crypto exchanges.
Stars: ✭ 104 (+300%)
Mutual labels:  crypto, exchange
Gekko Datasets
Gekko Trading Bot dataset dumps. Ready to use and download history files in SQLite format.
Stars: ✭ 146 (+461.54%)
Mutual labels:  crypto, cryptocurrency-exchanges
Eazebot
Free python/telegram bot for easy execution and surveillance of crypto trading plans on multiple exchanges.
Stars: ✭ 51 (+96.15%)
Mutual labels:  crypto, exchange
Ccxt Rest
Open Source Unified REST API of 100+ Crypto Exchange Sites (18k+ docker pulls) - https://ccxt-rest.io/
Stars: ✭ 210 (+707.69%)
Mutual labels:  crypto, exchange
Crypto Exchange
Pulls together list of crypto exchanges to interact with their API's in a uniform fashion.
Stars: ✭ 241 (+826.92%)
Mutual labels:  crypto, exchange
Algotrading
Algorithmic trading framework for cryptocurrencies.
Stars: ✭ 249 (+857.69%)
Mutual labels:  crypto, cryptocurrency-exchanges
Openwallet Android
The first truly free, libre, and open source light wallet for multiple cryptocurrencies (Bitcoin, Ethereum, Ripple, etc).
Stars: ✭ 86 (+230.77%)
Mutual labels:  crypto, free
Sarrafi
💵 Exchange price application for android
Stars: ✭ 49 (+88.46%)
Mutual labels:  price, exchange
django-prices-openexchangerates
openexchangerates.org support for django-prices
Stars: ✭ 33 (+26.92%)
Mutual labels:  price, exchange
Crypto Trading Bot
Cryptocurrency trading bot in javascript for Bitfinex, Bitmex, Binance, FTX, Bybit ... (public edition)
Stars: ✭ 1,089 (+4088.46%)
Mutual labels:  crypto, exchange
Peatiocryptoexchange
An open-source Crypto-Currency exchange. Peatio v3.0 Coming Soon !
Stars: ✭ 141 (+442.31%)
Mutual labels:  crypto, cryptocurrency-exchanges
Awesome Blockchain
Curated list of blockchain services and exchanges 🔥🏦🔥🏦🔥🏦🔥
Stars: ✭ 604 (+2223.08%)
Mutual labels:  crypto, exchange
Gekko Strategies
Strategies to Gekko trading bot with backtests results and some useful tools.
Stars: ✭ 1,022 (+3830.77%)
Mutual labels:  crypto, cryptocurrency-exchanges
Uniswap Python
🦄 The unofficial Python client for the Uniswap exchange.
Stars: ✭ 191 (+634.62%)
Mutual labels:  crypto, exchange
CoinMarketCap-Historical-Prices
Makes use of python3 and bs4 to scrape historical cryptocurrency prices, volume and market caps from coinmarketcap.com
Stars: ✭ 72 (+176.92%)
Mutual labels:  cryptocurrency-exchanges, cryptocurrency-prices

Crypto-Convert (Deprecated, needs maintenance)

license npm npm

Instantly convert cryptocurrency and get price information.

  • Top 100 Crypto Currencies Supported
  • Top 30 Fiats Supported
  • Price & Ticker information updated on a configurable interval from multiple secure sources (Binance, Bitfinex, OKEx)
  • Any pair can be converted, be it Crypto -> Crypto or Fiat -> Crypto.
  • Instant convert, no slow promises.

Installation

npm i crypto-convert

Usage

const convert = require("crypto-convert");

(async function(){

	//Cache is not yet loaded on application start
	if(!convert.isReady){
		await convert.ready();
	}

	convert.BTC.USD(1);
	convert.ETH.JPY(255);
	convert.LINK.LTC(5);
	convert.USD.CRO(100);

	//More readable syntax
	new convert.from("BTC").to("USD").amount(1);
})();

For Browsers

<script type="text/javascript" src="https://coinconvert.net/assets/js/crypto-convert.min.js"></script>

<script>
	console.log(convert.BTC.USD(1));
</script>

Configuration

const convert = require("crypto-convert");

convert.set({
	crypto_interval: 5000, //Crypto cache update interval, default every 5 seconds
	fiat_interval: (60 * 1e3 * 60), //Fiat cache update interval, default every 1 hour
	binance: true, //Use binance rates
	bitfinex: true, //Use bitfinex rates
	okex: true, //Use okex rates
	onUpdate: (tickers)=> {} //Call Hook on every crypto update	
});

API

Free public API, up to 50 req/s.

https://api.coinconvert.net/convert/btc/usd?amount=1

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].