8000 GitHub - zhaohaibo123/BlinkTradeJS: BlinkTrade JavaScript SDK
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

zhaohaibo123/BlinkTradeJS

 
 

Repository files navigation

BlinkTradeJS SDK

travis npm version Dependency Status Known Vulnerabilities

BlinkTradeJS WebSocket and REST Official JavasScript client for node.js and browser.

Getting Started

BlinkTrade provides a simple and robust WebSocket API to integrate our platform, we strongly recommend you to use it over the RESTful API.

Install

$ yarn add blinktrade

using npm.

$ npm install blinktrade

Documentation

You can also check our Full API Documentation.

Examples

More examples can be found in the examples directory.

Usage

All SDK supports either promises and callbacks, if a callback is provided as the last argument, it will be called as callback(error, result), otherwise it will just return the original promise, we also provide event emitters that you can use to get realtime updates through our WebSocket API, you can check the Event Emitters section.

NOTE We impose cross origin policy (cors), even though our SDK can work on the browser, it won’t work due our origin policy, so and we recommend you use on server side instead. Only the public rest is available on the browser, and other environments only works on testnet and you won’t be able use to use production environment on the browser, this might change in the future.

Public REST API

The most simple way to get the ticker, orderbook and trades, is through our public RESTful API, which doesn't require authentication.

Ticker

var BlinkTradeRest = require("blinktrade").BlinkTradeRest;
var blinktrade = new BlinkTradeRest({ currency: "BRL" });

blinktrade.ticker().then(function(ticker) {
  console.log(ticker);
});

Response

  {
    "high": 1900,
    "vol": 4.87859418,
    "buy": 1891.89,
    "last": 1891.89,
    "low": 1891.89,
    "pair": "BTCBRL",
    "sell": 1910,
    "vol_brl": 9250.19572651
  }

OrderBook

var BlinkTradeRest = require("blinktrade").BlinkTradeRest;
var blinktrade = new BlinkTradeRest({ currency: "BRL" });

blinktrade.orderbook().then(function(orderbook) {
  console.log(orderbook);
});

Response

{
  "pair": "BTCBRL",
  "bids": [
    [ 1891.89, 0.16314699, 90800027 ],
    [ 1880, 0.20712, 90800027 ]
  ],
  "asks": [
    [ 1910, 3.28046533, 90800027 ],
    [ 1919.99, 1.95046354, 90800027 ]
  ]
}

Last Trades

var BlinkTradeRest = require("blinktrade").BlinkTradeRest;
var blinktrade = new BlinkTradeRest({ currency: "BRL" });

blinktrade.trades().then(function(trades) {
  console.log(trades);
});

Response

 [{
    "tid": 16093,
    "date": 1472278473,
    "price": 1891.89,
    "amount": 0.1,
    "side": "sell"
  }, {
    "tid": 
F438
16094,
    "date": 1472278477,
    "price": 1891.89,
    "amount": 0.1,
    "side": "sell"
  }, {
    "tid": 16095,
    "date": 1472278668,
    "price": 1891.89,
    "amount": 0.1,
    "side": "sell"
 }]

Trade REST / WebSocket

On our RESTful API, we provide a trade endpoint that you're allowed to send and cancel orders, request deposits and withdrawals. You need to create an API Key through our platform and set their respective permission that gives you access to it.

The Trade endpoint is internaly a bridge to our WebSocket API, so you can access it both on REST and WebSocket API. Be aware that our RESTful trade endpoint can be changed at any time, we strongly recommend using the WebSocket API over the RESTful API.

NOTE that when generate the API Key and the API Secret, it will be only shown once, you should save it securely. The API Password is only used in the WebSocket API.

var BlinkTradeRest = require("blinktrade").BlinkTradeRest;
var blinktrade = new BlinkTradeRest({
  prod: false,
  key: "YOUR_API_KEY_GENERATED_IN_API_MODULE",
  secret: "YOUR_SECRET_KEY_GENERATED_IN_API_MODULE",
  currency: "BRL",
});

blinktrade.sendOrder({
  side: "1",
  price: parseInt(1800 * 1e8).toFixed(0),
  amount: parseInt(0.5 * 1e8).toFixed(0),
  symbol: "BTCBRL",
}).then(function(order) {
    console.log(order);
});

Response

{
    "OrderID": 1459028830811,
    "ExecID": 740972,
    "ExecType": "0",
    "OrdStatus": "0",
    "CumQty": 0,
    "Symbol": "BTCUSD",
    "OrderQty": 5000000,
    "LastShares": 0,
    "LastPx": 0,
    "Price": 180000000000,
    "TimeInForce": "1",
    "LeavesQty": 50000000,
    "MsgType": "8",
    "ExecSide": "1",
    "OrdType": "2",
    "CxlQty": 0,
    "Side": "1",
    "ClOrdID": 3251968,
    "AvgPx": 0
}

Usage WebSocket

Authenticating

Make sure that you're connected to send messages through WebSocket, most of the message also require that you're authenticated.

var BlinkTradeWS = require("blinktrade").BlinkTradeWS;
var blinktrade = new BlinkTradeWS({ prod: true });

blinktrade.connect().then(function() {
  // Connected
  return blinktrade.login({ username: "", password: "" });
}).then(function() {
});

Requesting Balance

Will request your balance for each broker.

blinktrade.balance().then(function(balance) {
  console.log(balance);
});

You can pass a callback to receive balance updates.

blinktrade.balance(function(err, balance) {
  console.log(balance);
});

EXAMPLE RESPONSE

{
    "5": {
        "BTC_locked": 0,
        "USD": 177911657052760,
        "BTC": 1468038442214,
        "USD_locked": 96750050000
    },
    "MsgType": "U3",
    "ClientID": 90800003,
    "BalanceReqID": 5019624,
    "Available": {
        "USD": 177814907002760,
        "BTC": 1468038442214
    }
}

Subscribe to OrderBook

blinktrade.subscribeOrderbook(["BTCUSD"]).then(function(orderbook) {
  console.log(orderbook);
});

EXAMPLE RESPONSE

{
  "MDReqID": 9894272,
  "Symbol": "BTCUSD",
  "MsgType": "W",
  "MarketDepth": 0,
  "MDFullGrp": {
    "BTCUSD": {
      "bids": [[ 578, 1.59231429, 90800535 ], [ 577.79, 5.68, 90800535 ]],
      "asks": [[ 578.72, 8.32039144, 90800535 ], [ 579.67, 2, 90800535 ]]
    }
  }
}

To unsubscribe from orderbook, you should pass the MDReqID on unSubscribeOrderbook().

blinktrade.subscribeOrderbook(["BTCUSD"]).then(function(orderbook) {
  blinktrade.unSubscribeOrderbook(orderbook.MDReqID);
});

Note that there's no return when unsubscribe from orderbook.

Subscribe to ticker

You can subscribe on one or more market symbols.

blinktrade.subscribeTicker(["BLINK:BTCUSD"]).then(function(ticker) {
  console.log(ticker);
});

To unsubscribe from ticker, you do the same as unSubscribeOrderbook, but passing SecurityStatusReqID to unSubscribeTicker().

blinktrade.subscribeTicker(["BLINK:BTCUSD"]).then(function(ticker) {
  blinktrade.unSubscribeTicker(ticker.SecurityStatusReqID);
});

Send and cancelling orders

Converting Floats to Integers can be dangerous. Different programming languages can get weird rounding errors and imprecisions, so all API returns prices and bitcoin values as Integers and in "satoshis" format. We also expect Integers as input, make sure that you're formatting the values properly to avoid precision issues.

e.g.:

// Wrong
0.57 * 1e8 => 56999999.99999999

// Correct
parseInt((0.57 * 1e8).toFixed(0)) => 57000000

blinktrade.sendOrder({
  "side": "1", // Buy
  "price": parseInt((550 * 1e8).toFixed(0)),
  "amount": parseInt((0.05 * 1e8).toFixed(0)),
  "symbol": "BTCUSD",
}).then(function(order) {
  // Sent
});

Response

The response is the same as the Execution Report, if you're using it with rest transport, it will response as an array together with the balance response.

{
    "OrderID": 1459028830811,
    "ExecID": 740972,
    "ExecType": "0",
    "OrdStatus": "0",
    "CumQty": 0,
    "Symbol": "BTCUSD",
    "OrderQty": 5000000,
    "LastShares": 0,
    "LastPx": 0,
    "Price": 55000000000,
    "TimeInForce": "1",
    "LeavesQty": 5000000,
    "MsgType": "8",
    "ExecSide": "1",
    "OrdType": "2",
    "CxlQty": 0,
    "Side": "1",
    "ClOrdID": 3251968,
    "AvgPx": 0
}

To cancel a order, you need to pass the orderId, you'll also need to pass the clientId in order to get a response, if you didn't provide orderId, all open orders will be cancelled.

blinktrade.cancelOrder({ orderId: order.OrderID, clientId: order.ClOrdID }).then(function(order) {
  console.log("Order Cancelled");
});

The response will be the same as the sendOrder with ExecType: "4"

Last Trades

List the latest trades executed on an exchange since a chosen date.

blinktrade.trades({ limit: 100, since: 2270000 }).then(function(data) {
  console.log("Trades", data);
});

Requesting Deposits

You can generate either bitcoin or FIAT deposits, if any arguments was passed, it will generate a bitcoin deposit along with the address.

Generate bitcoin address to deposit

blinktrade.requestDeposit().then(function(deposit) {
  console.log(deposit);
});

Fiat deposit

To generate a FIAT deposit, you need to pass the depositMethodId which correspond the method of deposit of your broker, you can get these informations calling requestDepositMethods()

blinktrade.requestDeposit({
  value: parseInt(200 * 1e8),
  currency: "BRL",
  depositMethodId: 502,
}).then(function(deposit) {
  console.log(deposit);
});

Response

Both responses for bitcoin and fiat deposits are quite similar.

{
    "DepositMethodName": "deposit_btc",
    "UserID": 90800003,
    "ControlNumber": null,
    "State": "UNCONFIRMED",
    "Type": "CRY",
    "PercentFee": 0,
    "Username": "user",
    "CreditProvided": 0,
    "DepositReqID": 7302188,
    "DepositID": "2a6b5e322fd24574a4d9f988681a542f",
    "Reason": null,
    "AccountID": 90800003,
    "Data": {
        "InputAddress": "mjjVMr8WcYQwVGzYc8HpaRyAZc89ngTdKV",
        "Destination": "n19ZAH1WGoUkQhubQw71fH11BenifxpBxf"
    },
    "ClOrdID": "7302188",
    "Status": "0",
    "Created": "2016-09-03 23:08:26",
    "DepositMethodID": null,
    "Value": 0,
    "BrokerID": 5,
    "PaidValue": 0,
    "Currency": "BTC",
    "ReasonID": null,
    "MsgType": "U23",
    "FixedFee": 0
}

NOTE The Data.InputAddress is the address that you have to deposit. DO NOT DEPOSIT on Data.Destination address.

Requesting Withdraws

To request withdraws, you need to pass a "data" information, which represents the information to your withdraw, it's related to bank accounts, numbers, or a bitcoin address. This information is dynamically and different for every broker.

blinktrade.requestWithdraw({
  "amount": parseInt(400 * 1e8),
  "currency": "BRL",
  "method": "bradesco",
  "data": {
    "AccountBranch": "111",
    "AccountNumber": "4444-5",
    "AccountType": "corrente",
    "CPF_CNPJ": "00000000000"
  }
})

Confirm Withdraws (two-factor)

After requesting a withdraw, you might get an error asking for two factor authentication, you should call confirmWithdraw passing the confirmationToken that was sent to your email, or secondFactor if needed.

blinktrade.confirmWithdraw({
    withdrawId: 523,
    confirmationToken: 'TOKEN'
});

Response

{
    "Username": "user",
    "Status": "1",
    "SecondFactorType": "",
    "Created": "2016-09-03 23:42:06",
    "PaidAmount": 50000000,
    "UserID": 90800003,
    "Reason": null,
    "Currency": "BRL",
    "Amount": 50000000,
    "ReasonID": null,
    "BrokerID": 5,
    "ClOrdID": "3332623",
    "WithdrawID": 523,
    "WithdrawReqID": 3332623,
    "MsgType": "U7",
    "Data": {
        "Instant": "NO",
        "AccountBranch": "111",
        "AccountNumber": "4444-5",
        "AccountType": "corrente", 
        "CPF_CNPJ": "00000000000"
    },
    "Method": "bradesco",
    "FixedFee": 0,
    "PercentFee": 0
}

Event Emitters

Using event emitters is easy and expressive way to keep you updated through our WebSocket API, you can listen to individual events to match your needs, you can listen to new orders, execution reports, tickers and balance changes. Event emitters can also be used as promises to keep it chained, event emitters are implemented with EventEmitter2, which gives you more flexibility to match events with multi-level wildcards and extends events such as .onAny, .once, .many and so on.

Event Ticker

To keep ticker update on new events, you can return a event emitter and match with the market.

blinktrade.subscribeTicker(["UOL:USDBRT", "BLINK:BTCUSD", "BLINK:BTCBRL"])
  .on("UOL:USDBRT",   function(usdbrt) {
}).on("BLINK:BTCUSD", function(btcusd) {
}).on("BLINK:BTCBRL", function(btcbrl) {
});

You can easily match all symbols at the same listener.

blinktrade.subscribeTicker(["UOL:USDBRT", "BLINK:BTCUSD", "BLINK:BTCBRL"])
.on("BLINK:*", function(symbol) {
});

Event Market Data

To get realtime updates on order book, you should listen to the following events.

blinktrade.subscribeOrderbook(["BTCUSD"])
  .on("OB:NEW_ORDER", function(order) {
}).on("OB:UPDATE_ORDER", function(order) {
}).on("OB:DELETE_ORDER", function(order) {
}).on("OB:DELETE_ORDERS_THRU", function(order) {
}).on("OB:TRADE_NEW", function(order) {
});

You can still return a promise when listen events.

blinktrade.subscribeOrderbook(["BTCUSD"])
.on("OB:NEW_ORDER", function(order) {
  console.log("New order received");
}).then(function(orderbook) {
  console.log("Full orderbook", orderbook);
});

Event Balance

You listen to the BALANCE event to receive balance updates.

blinktrade.balance().on("BALANCE", function(balance) {
  console.log(balance);
});

Execution Reports

In order the get when a order is executed, you can listen to the execution report.

blinktrade.executionReport()
  .on("EXECUTION_REPORT:NEW", function(data) {
}).on("EXECUTION_REPORT:PARTIAL", function(data) {
}).on("EXECUTION_REPORT:EXECUTION", function(data) {
}).on("EXECUTION_REPORT:CANCELED", function(data) {
}).on("EXECUTION_REPORT:REJECTED", function(data) {
});

Withdraw and Deposit Refresh

To get deposit and withdraw updates, you can listen to DEPOSIT_REFRESH and WITHDRAW_REFRESH respectively.

blinktrade.requestDeposit().on('DEPOSIT_REFRESH', function(deposit) {
  console.log(deposit);
});

blinktrade.requestWithdraw().on('WITHDRAW_REFRESH', function(withdraw) {
  console.log(withdraw);
});

NOTE that these events will only be called to the current deposit / withdraw created. If you want to listen to any deposit / withdraw updates, you should use onDepositRefresh(callback) and onWithdrawRefresh() instead.

blinktrade.onDepositRefresh(function(deposit) {
  console.log(deposit);
});

blinktrade.onWithdrawRefresh(function(withdraw) {
  console.log(withdraw);
});

API

Public REST API

WebSocket

Trade Rest / Websocket

Public REST

Constructor [rest]

new BlinkTradeRest(Object constructor)

Arguments

Name Type Description
prod Boolean Production environment, default to false
brokerId Number see brokers list
key String API Key generated on our platform, it only needed on the Trade endpoint
secret String API Secret generated on our platform, it only needed on the Trade endpoint
currency String Currency symbol to fetch public endpoint

ticker [rest]

ticker(Function? callback) => Promise / callback

trades [rest]

trades(Object params, Function? callback) => Promise / callback

Arguments

Name Type Description
limit Number Limit of trades that will be returned. should be a positive integer. Optional; defaults to 100 trades
since Number tid (TradeID) which executed trades must be fetched from. Optional; defaults to the date of the first executed trade

orderbook [rest]

orderbook(Function? callback) => Promise / callback

WebSocket

constructor [websocket]

new BlinkTradeWS(Object constructor)

Arguments

Name Type Description
prod Boolean Production environment, default to false
brokerId Number see brokers list
url String Custom url in case if you're using a custom backend url
headers String Custom headers to pass to WebSocket constructor if it supported, (useful on react-native)
fingerPrint String Custom fingerprint if you are not using in either a browser or node (useful on react-native)

connect [websocket]

Connect to our WebSocket.

connect(Function? callback) => Promise / callback

heartbeat [websocket]

Used as test request to check the latency connection.

heartbeat(Function? callback) => Promise / callback

login [websocket]

login(Object login, Function? callback) => Promise / callback

Arguments

Name Type Description
username String Account username
password String Account password
secondFactor String Optional secondFactor, if the authentication require second factor, you'll receive an error with NeedSecondFactor = true

logout [websocket]

logout(Function? callback) => Promise / callback

profile [websocket]

Available only on WebSocket.

profile(Function? callback) => Promise / callback

subscribeTicker [websocket]

subscribeTicker(Array<string> symbols, Function? callback) => Promise / callback

Symbols Available:

Name Description
BLINK:BTCUSD BTC <-> Testnet (USD)
BLINK:BTCBRL BTC <-> Brazil Reals (BRL)
BLINK:BTCVEF BTC <-> Venezuelan Bolivares
BLINK:BTCCLP BTC <-> Chilean Pesos
BLINK:BTCVND BTC <-> Vietnamise Dongs
UOL:USDBRT Dólar Turismo
UOL:USDBRL Dólar Comercial

subscribeOrderbook [websocket]

subscribeOrderbook(Array<string> symbol, Function? callback) => Promise / callback

Events

Event Description
OB:NEW_ORDER Callback when receives a new order
OB:UPDATE_ORDER Callback when an order has been updated
OB:DELETE_ORDER Callback when an order has been deleted
OB:DELETE_ORDERS_THRU Callback when one or more orders has been executed and deleted from the book

executionReport [websocket]

executionReport(Function? callback) => Promise / callback

Events

An event emitter to get execution reports.

Event Description
EXECUTION_REPORT:NEW Callback when you send a new order
EXECUTION_REPORT:PARTIAL Callback when your order has been partially executed
EXECUTION_REPORT:EXECUTION Callback when an order has been successfully executed
EXECUTION_REPORT:CANCELED Callback when your order has been canceled
EXECUTION_REPORT:REJECTED Callback when order has been rejected

tradeHistory [websocket]

tradeHistory(Object pagination, Function? callback) => Promise / callback

Arguments

Name Type Description
page Number Current page to fetch, defaults to 0
pageSize Number Number of trades, limits to 80

Trade REST / Websocket

These methods bellow are both availabe under REST and WebSocket API.

balance [websocket, rest]

balance(Function? callback) => Promise / callback

Events

balance().on("BALANCE", Function callback) => Promise

sendOrder [websocket, rest]

sendOrder(Object order, Function? callback) => Promise / callback

Arguments

Name Type Description
side String "1" = Buy, "2" = Sell
price Number Price in "satoshis". e.g.: 1800 * 1e8
amount Number Amount to be sent in satoshis. e.g.: 0.5 * 1e8
symbol String Currency pair symbol, check symbols table

cancelOrder [websocket, rest]

cancelOrder(Object order | Number orderId, Function? callback) => Promise / callback

Arguments

Name Type Description
orderId Number Required Order ID to be canceled
clientId Number You need to pass the clientId (ClOrdID) to get a response

myOrders [websocket, rest]

myOrders(Object params, Function? callback) => Promise / callback

Arguments

Name Type Description
page Number Current page to fetch, defaults to 0
pageSize Number Number of orders, limits to 40
filter Array Optional; Open: ['has_leaves_qty eq 1'], Filled: ['has_cum_qty eq 1'], Cancelled: ['has_cxl_qty eq 1']

requestLedger [websocket, rest]

requestLedger(Object params, Function? callback) => Promise / callback

Arguments

Name Type Description/Value
page number Optional; defaults to 0
pageSize number Optional; defaults to 20
brokerID number Optional; <BROKER_ID>
currency string Optional; Currency code. (.e.g: BTC)

requestWithdrawList [websocket, rest]

requestWithdrawList(Object pagination, Array<string> statusList, Function? callback) => Promise / callback

Name Type Description
page Number Current page to fetch, defaults to 0
pageSize Number Number of withdraws, limits to 20
statusList Array 1-Pending, 2-In Progress, 4-Completed, 8-Cancelled

requestWithdraw [websocket, rest]

requestWithdraw(Object params, Function? callback) => Promise / callback

Name Type Description
data Object Withdraw required fields
amount Number Amount of the withdraw
method Array Method name of withdraw, check with your broker, defaults to bitcoin
currency< 80DE /td> String Currency pair symbol to withdraw, defaults to BTC

Events

Event Description
WITHDRAW_REFRESH Callback when withdraw refresh

FOXBIT

Methods Required Data fields
bradesco AccountBranch, AccountNumber, AccountType, CPF_CNPJ
bb AccountBranch, AccountNumber, AccountType, CPF_CNPJ
Caixa AccountBranch, AccountNumber, AccountType, CPF_CNPJ
ted BankName, BankNumber, AccountBranch, AccountNumber, AccountType, CPF_CNPJ

VBTC

Methods Required Data fields
banktransfer BankName, AccountBranch, BankCity, AccountName, AccountNumber, BankSwift
VPBankinternaltransfer VPbankbranch, BankCity, AccountName, AccountNumber, BankSwift
cashtoID BankName, BankBranch, BankCity, Clientname, ClientIDNr, Issue Date ID, Place of Issue, Phone Number of Recipient

confirmWithdraw [websocket, rest]

confirmWithdraw(Object params, Function? callback) => Promise / callback

Name Type Description
withdrawId String Withdraw ID to confirm
confirmationToken String Optional Confirmation Token sent by email
secondFactor String Optional Second Factor Authentication code generated by authy

cancelWithdraw [websocket, rest]

cancelWithdraw(Number withdrawId, Function? callback) => Promise / callback

onWithdrawRefresh [websocket]

onWithdrawRefresh(Function callback) => Promise

requestDepositList [websocket, rest]

requestDepositList(Object params, Function? callback) => Promise / callback

Name Type Description
page Number Current page to fetch, defaults to 0
pageSize Number Number of deposits, limits to 20
statusList Array 1-Pending, 2-In Progress, 4-Completed, 8-Cancelled

requestDeposit [websocket, rest]

requestDeposit(Object params, Function? callback) => Promise / callback

Name Type Description
value Number Value amount to deposit
currency String Currency pair symbol to withdraw, defaults to BTC
depositMethodId Number Method ID to deposit, check requestDepositMethods

Events

Event Description
DEPOSIT_REFRESH Callback when deposit refresh

requestDepositMethods [websocket, rest]

requestDepositMethods(Function? callback) => Promise / callback

onDepositRefresh [websocket]

onDepositRefresh(Function callback) => Promise

LICENSE

LICENSE GPLv3

About

BlinkTrade JavaScript SDK

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%
0