Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 1021 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 1021 Bytes

Binance API - Examples

This folder contains ready to go examples demonstrating various aspects of this API implementation, written in typescript.

Found something difficult to implement? Contribute to these examples and help others!

Getting started

  • Clone the project (or install the module in your own project npm install binance).
  • Edit the sample as needed (some samples require edits, e.g APi keys or import statements).
  • Execute the sample using ts-node: ts-node examples/rest-spot-public.ts.

Samples that API credentials using process.env.APIKEY can be spawned with environment variables. Unix/macOS example:

APIKEY="apikeypastedhere" APISECRET="apisecretpastedhere" ts-node examples/ws-userdata.ts

REST USDM Examples

  • rest-future-bracket-order.ts Creates three order, entry, TP, SL and submit them all at once using submitMultipleOrders
  • rest-usdm-order.ts Creates single entry, using submitNewOrder
  • rest-usdm-order-sl.ts Modify current Stop Loss order(HedgeMode only)