* Used to make private requests to the futures (FAPI) API * @param path * @param data * @param method * @returns
(path: string, data: Dict = {}, method: HttpMethod = 'GET')
| 576 | * @returns |
| 577 | */ |
| 578 | async privateFuturesRequest(path: string, data: Dict = {}, method: HttpMethod = 'GET'): Promise<any> { |
| 579 | return await this.futuresRequest(this.getFapiUrl() + path, data, method, true); |
| 580 | } |
| 581 | |
| 582 | /** |
| 583 | * Used to make private requests to the delivery (DAPI) API |
no test coverage detected