feat(v3.10.34): added slippage tolerance types to order endpoints

This commit is contained in:
JJ-Cro
2025-02-28 10:32:51 +01:00
parent dec453f338
commit 20edb49895
4 changed files with 7 additions and 3 deletions

View File

@@ -18,6 +18,8 @@ export interface OrderParamsV5 {
orderType: OrderTypeV5;
qty: string;
marketUnit?: 'baseCoin' | 'quoteCoin';
slippageToleranceType: string;
slippageTolerance: string;
price?: string;
triggerDirection?: 1 | 2;
orderFilter?: OrderFilterV5;

View File

@@ -42,6 +42,8 @@ export interface AccountOrderV5 {
stopOrderType: StopOrderTypeV5;
orderIv: string;
marketUnit: 'baseCoin' | 'quoteCoin';
slippageToleranceType: string;
slippageTolerance: string;
triggerPrice: string;
takeProfit: string;
stopLoss: string;