binance-api-node
Advanced tools
Comparing version 0.9.21 to 0.9.22
@@ -377,2 +377,5 @@ "use strict"; | ||
}, | ||
allOrdersOCO: function allOrdersOCO(payload) { | ||
return privCall('/api/v3/allOrderList', payload); | ||
}, | ||
accountInfo: function accountInfo(payload) { | ||
@@ -379,0 +382,0 @@ return privCall('/api/v3/account', payload); |
@@ -176,2 +176,3 @@ // tslint:disable:interface-name | ||
allOrders(options: { symbol?: string, useServerTime?: boolean }): Promise<QueryOrderResult[]>; | ||
allOrdersOCO(options: { timestamp: number, fromId?: number, startTime?: number, endTime?: number, limit?: number, recvWindow: number }): Promise<QueryOrderResult[]>; | ||
dailyStats(options?: { symbol: string }): Promise<DailyStatsResult | DailyStatsResult[]>; | ||
@@ -222,3 +223,3 @@ candles(options: CandlesOptions): Promise<CandleChartResult[]>; | ||
export type ReconnectingWebSocketHandler = (options?: {keepClosed: boolean, fastClose: boolean, delay: number}) => void | ||
export type ReconnectingWebSocketHandler = (options?: { keepClosed: boolean, fastClose: boolean, delay: number }) => void | ||
@@ -710,3 +711,3 @@ export enum CandleChartInterval { | ||
} | ||
export interface MarkPriceResult { | ||
@@ -713,0 +714,0 @@ symbol: string; |
{ | ||
"name": "binance-api-node", | ||
"version": "0.9.21", | ||
"version": "0.9.22", | ||
"description": "A node API wrapper for Binance", | ||
@@ -5,0 +5,0 @@ "main": "dist", |
@@ -80,2 +80,3 @@ # binance-api-node [![build](https://img.shields.io/travis/Ashlar/binance-api-node/master.svg?style=flat-square)](https://travis-ci.org/Ashlar/binance-api-node) [![cover](https://img.shields.io/coveralls/github/Ashlar/binance-api-node/master?style=flat-square)](https://coveralls.io/github/Ashlar/binance-api-node?branch=master) [![bnb](https://img.shields.io/badge/binance-winner-yellow.svg?style=flat-square)](https://github.com/binance-exchange/binance-api-node) | ||
- [allOrders](#allorders) | ||
- [allOrdersOCO](#allordersoco) | ||
- [accountInfo](#accountinfo) | ||
@@ -1177,2 +1178,77 @@ - [myTrades](#mytrades) | ||
#### allOrdersOCO | ||
Retrieves all OCO based on provided optional parameters | ||
```js | ||
console.log( | ||
await client.allOrdersOCO({ | ||
timestamp: 1565245913483, | ||
}), | ||
) | ||
``` | ||
| Param | Type | Required | Default | Description | | ||
|------------|---------|----------|---------|-----------------------------------------------------------| | ||
| timestamp | Number | true | | | | ||
| startTime | Number | false | | | | ||
| endTime | Number | false | | | | ||
| limit | Integer | false | `500` | Max `1000` | | ||
| recvWindow | Number | false | | The value cannot be greater than 60000 | | ||
| formId | Number | false | | If supplied, neither startTime or endTime can be provided | | ||
<details> | ||
<summary>Output</summary> | ||
```js | ||
;[ | ||
{ | ||
"orderListId": 29, | ||
"contingencyType": "OCO", | ||
"listStatusType": "EXEC_STARTED", | ||
"listOrderStatus": "EXECUTING", | ||
"listClientOrderId": "amEEAXryFzFwYF1FeRpUoZ", | ||
"transactionTime": 1565245913483, | ||
"symbol": "LTCBTC", | ||
"orders": [ | ||
{ | ||
"symbol": "LTCBTC", | ||
"orderId": 4, | ||
"clientOrderId": "oD7aesZqjEGlZrbtRpy5zB" | ||
}, | ||
{ | ||
"symbol": "LTCBTC", | ||
"orderId": 5, | ||
"clientOrderId": "Jr1h6xirOxgeJOUuYQS7V3" | ||
} | ||
] | ||
}, | ||
{ | ||
"orderListId": 28, | ||
"contingencyType": "OCO", | ||
"listStatusType": "EXEC_STARTED", | ||
"listOrderStatus": "EXECUTING", | ||
"listClientOrderId": "hG7hFNxJV6cZy3Ze4AUT4d", | ||
"transactionTime": 1565245913407, | ||
"symbol": "LTCBTC", | ||
"orders": [ | ||
{ | ||
"symbol": "LTCBTC", | ||
"orderId": 2, | ||
"clientOrderId": "j6lFOfbmFMRjTYA7rRJ0LP" | ||
}, | ||
{ | ||
"symbol": "LTCBTC", | ||
"orderId": 3, | ||
"clientOrderId": "z0KCjOdditiLS5ekAFtK81" | ||
} | ||
] | ||
} | ||
] | ||
``` | ||
</details> | ||
#### accountInfo | ||
@@ -1179,0 +1255,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
104221
1713
1801