* 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 = {})
| 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 |
nothing calls this directly
no test coverage detected