ADD: missing API (Modify Order)

This commit is contained in:
footcoderr
2023-10-01 21:40:50 +09:00
parent c082670493
commit dee54afc8d
2 changed files with 17 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ import {
FuturesPlanType,
FuturesKlineInterval,
FuturesHistoricPositions,
ModifyFuturesOrder,
} from './types';
import { REST_CLIENT_TYPE_ENUM } from './util';
import BaseRestClient from './util/BaseRestClient';
@@ -388,6 +389,11 @@ export class FuturesClient extends BaseRestClient {
});
}
/** Modify Order */
modifyOrder(params: ModifyFuturesOrder): Promise<APIResponse<any>> {
return this.postPrivate('/api/mix/v1/order/modifyOrder', params);
}
/**
* Cancel all futures orders for a symbol
*/