npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-red-contrib-ccxt

v0.2.3

Published

node-red ccxt

Downloads

15

Readme

node-red-contrib-ccxt

A Node-RED node implemented by CCXT.

Description

Now this node package supports the API for all (133 Exchanges) Crypto Exchanges in the world from CCXT node-RED package. More than 1500 APIS implemented to be used.

For the latest updates see the CHANGELOG.md

Installation

npm install node-red-contrib-ccxt --save

Exchanges supported

  • 1BTCXE
  • ACX
  • Allcoin
  • ANXPro
  • Anybits
  • BCEX
  • Bibox
  • BigONE
  • Binance
  • Bit2C
  • bitbank
  • BitBay
  • Bitfinex
  • Bitfinex v2
  • bitFlyer
  • Bitforex
  • Bithumb
  • Bitibu
  • bitkk
  • Bitlish
  • BitMarket
  • BitMEX
  • Bitsane
  • Bitso
  • Bitstamp
  • Bitstamp v1
  • Bittrex
  • Bit-Z
  • BL3P
  • Bleutrade
  • Braziliex
  • BTC-Alpha
  • BtcBox
  • BTCChina
  • BTCExchange
  • BTC Markets
  • BtcTrade.im
  • BTC Trade UA
  • BTCTurk
  • Buda
  • BX.in.th
  • C-CEX
  • CEX.IO
  • CHBTC
  • ChileBit
  • COBINHOOD
  • Coinbase
  • Coinbase Prime
  • Coinbase Pro
  • coincheck
  • CoinEgg
  • CoinEx
  • CoinExchange
  • CoinFalcon
  • coinfloor
  • Coingi
  • CoinMarketCap
  • CoinMate
  • coinnest
  • CoinOne
  • CoinSpot
  • CoinTiger
  • CoolCoin
  • COSS
  • CREX24
  • Crypton
  • Cryptopia
  • Deribit
  • DSX
  • Ethfinex
  • EXMO
  • EXX
  • FCoin
  • flowBTC
  • FoxBit
  • FYB-SE
  • FYB-SG
  • Gatecoin
  • Gate.io
  • GDAX
  • Gemini
  • GetBTC
  • HADAX
  • HitBTC
  • HitBTC v2
  • Huobi Pro
  • ice3x
  • Independent Reserve
  • INDODAX
  • itBit
  • jubi.com
  • KKEX
  • Kraken
  • Kucoin
  • KuCoin 2
  • Kuna
  • LakeBTC
  • LBank
  • Liqui
  • Liquid
  • LiveCoin
  • luno
  • Lykke
  • Mercado Bitcoin
  • MixCoins
  • NegocieCoins
  • Novaexchange
  • OKCoin CNY
  • OKCoin USD
  • OKEX
  • Paymium
  • Poloniex
  • QRYPTOS
  • QuadrigaCX
  • QUOINEX
  • RightBTC
  • SouthXchange
  • SurBitcoin
  • The Ocean
  • TheRockTrading
  • TideBit
  • Tidex
  • UEX
  • Upbit
  • UrduBit
  • Vaultoro
  • VBTC
  • VirWoX
  • xBTCe
  • YoBit
  • YUNBI
  • Zaif
  • ZB

CCXT node-RED Configuration

  • Exchange: Exchange name
  • API: All public APIs normally are implemented by all exchanges. These API do not need to register in the Exchange. If select Custom API we will have access to all API to the Exchange. Some of them are public and other are private. The private API need to register in the Exchange and create secrets for the API to be accessed. Follow the help of the Exchange to create it.
  • Secrets: only for Custom API. Permit create the secrets to access private API to the Exchange.
  • API Type: only for Custom API. It represents the list of all API types offered by the Exchange.
  • API Name: only for Custom API. It represents the name of the API selected. Consult the help of the Exchange to know if is necesary secrets to access to it.
  • API payload: only for Custom API. Some API need a payload to be query. Consult the API help of the Exchange.

Some examples

  • List Bitcoin Balance in my wallet from Kraken exchange. This API is private so we need to register in the exchange and create the secrets (APIkey and Secret)

ccxt_kraken_balance

  • List OHLCV array for Doge/Bitcoin grouped in hours from 18/02/2019 from Bittrex Exchange. This API is public and we do not need to register in the Exchange to query this data.

ccxt_bittrex_ohclv

In the Example folder of the node you have the flow of these two cases. Of course for the private one you must register in the Exchange and create the secrets.