MCPcopy Create free account
hub / github.com/ccxt/node-binance-api / mgTrades

Method mgTrades

src/node-binance-api.ts:5521–5524  ·  view source on GitHub ↗

* Get trades for a given symbol - margin account * @param {string} symbol - the symbol * @param {object} options - additional options * @return {promise or undefined} - omitting the callback returns a promise

(symbol: string, params: Dict = {})

Source from the content-addressed store, hash-verified

5519 * @return {promise or undefined} - omitting the callback returns a promise
5520 */
5521 async mgTrades(symbol: string, params: Dict = {}): Promise<MyTrade[]> {
5522 const parameters = Object.assign({ symbol: symbol }, params);
5523 return await this.privateSapiRequest('v1/margin/myTrades', parameters);
5524 }
5525
5526 /**
5527 * Transfer from main account to delivery account

Callers

nothing calls this directly

Calls 1

privateSapiRequestMethod · 0.95

Tested by

no test coverage detected