Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/binance/binance-websocket-examples

Example code in Nodejs that demonstrate how to subscribe to Binance Websocket server.
https://github.com/binance/binance-websocket-examples

api binance orderbook websocket

Last synced: 5 days ago
JSON representation

Example code in Nodejs that demonstrate how to subscribe to Binance Websocket server.

Awesome Lists containing this project

README

        

# Binance Websocket Examples

## Local orderbook (Spot)

```bash
# Cache local orderbook and echo best price
# btcusdt by default
npm run orderbook

# or provide the trading pair
SYMBOL=bnbusdt npm run orderbook

```

## Spot user data stream

```bash
# get user data steam
APIKEY=xxxxxx npm run user

# Get margin account update from websocket
APIKEY=xxxxxx APISECRET=xxxxx npm run margin-user
```

## Futures user data stream

```bash
# Get user data steam on production
APIKEY=xxxxxx APISECRET=xxxxx npm run futures-user

# On testnet
APIKEY=xxxxxx APISECRET=xxxxx WSS_BASE_URL="wss://stream.binancefuture.com/" HTTP_BASE_URL="https://testnet.binancefuture.com/" npm run futures-user
```

## Delivery Futures user data stream

```bash
# Get user data steam - defaults to production
APIKEY=xxxxxx APISECRET=xxxxx npm run delivery-futures-user
```

## Combined streams

```bash
# Get multi pairs stream, setting the pairs in src/multi-stream-depth
npm run multi-stream
```

## Spot trade stream delay monitoring

```bash
npm run monitor-spot-trade
```

## Spot depth stream delay monitoring

```bash
npm run monitor-spot-depth
```

## Futures depth stream delay monitoring

```bash
npm run monitor-futures
```

## How to setup

```bash

npm install

# run test
npm run test

```

## License
MIT