chore: DCP function update

This commit is contained in:
Jerko J
2024-07-17 14:28:50 +02:00
parent 06476e6dd6
commit 0ed98f478d

View File

@@ -559,6 +559,10 @@ export class RestClientV5 extends BaseRestClient {
* *
* If you need to turn it on/off, you can contact your client manager for consultation and application. * If you need to turn it on/off, you can contact your client manager for consultation and application.
* The default time window is 10 seconds. * The default time window is 10 seconds.
*
* Only for institutional clients!
*
* If it doesn't work, use v2!
*/ */
setDisconnectCancelAllWindow( setDisconnectCancelAllWindow(
category: 'option', category: 'option',
@@ -570,8 +574,15 @@ export class RestClientV5 extends BaseRestClient {
}); });
} }
// TO CHECK! /**
/* setDisconnectCancelAllWindow( * This endpoint allows you to set the disconnection protect time window. Covers: option (unified account).
*
* If you need to turn it on/off, you can contact your client manager for consultation and application.
* The default time window is 10 seconds.
*
* Only for institutional clients!
*/
setDisconnectCancelAllWindowV2(
product: 'OPTION' | 'SPOT' | 'DERIVATIVES', product: 'OPTION' | 'SPOT' | 'DERIVATIVES',
timeWindow: number, timeWindow: number,
): Promise<APIResponseV3<undefined>> { ): Promise<APIResponseV3<undefined>> {
@@ -579,7 +590,7 @@ export class RestClientV5 extends BaseRestClient {
product, product,
timeWindow, timeWindow,
}); });
} */ }
/** /**
* *