You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
futureSettlement: boolean;// Whether daily settlement for expiry feature is enabled. Applicable to FUTURES cross.
405
407
instIdCode: number;// Instrument ID code. For simple binary encoding, must use instIdCode instead of instId.
408
+
/** Category of instrument's base currency. "1" = Crypto, "3" = Stocks */
409
+
instCategory?: string;
406
410
posLmtAmt: string;// Maximum position value (USD) for this instrument at the user level. Applicable to SWAP/FUTURES.
407
411
posLmtPct: string;// Maximum position ratio (e.g., 30 for 30%) a user may hold relative to platform's current total position value. Applicable to SWAP/FUTURES.
408
412
maxPlatOILmt: string;// Platform-wide maximum position value (USD) for this instrument. Applicable to SWAP/FUTURES.
413
+
/** Remaining long position value (USD) the user is permitted to open. Applicable to SWAP/FUTURES. */
414
+
longPosRemainingQuota?: string;
415
+
/** Remaining short position value (USD) the user is permitted to open. Applicable to SWAP/FUTURES. */
416
+
shortPosRemainingQuota?: string;
409
417
groupId?: string;// Instrument trading fee group ID
418
+
/** ELP maker permission. "0" = not enabled, "1" = enabled but no permission, "2" = enabled with permission */
futureSettlement?: boolean;// Whether daily settlement for expiry feature is enabled. Applicable to FUTURES cross.
121
123
tradeQuoteCcyList?: string[];// List of quote currencies available for trading, e.g. ["USD", "USDC"]
122
124
instIdCode?: number;// Instrument ID code. For simple binary encoding, must use instIdCode instead of instId.
125
+
/** Category of instrument's base currency. "1" = Crypto, "3" = Stocks */
126
+
instCategory?: string;
123
127
posLmtAmt?: string;// Maximum position value (USD) for this instrument at the user level. Applicable to SWAP/FUTURES.
124
128
posLmtPct?: string;// Maximum position ratio (e.g., 30 for 30%) a user may hold relative to platform's current total position value. Applicable to SWAP/FUTURES.
125
129
maxPlatOILmt?: string;// Platform-wide maximum position value (USD) for this instrument. Applicable to SWAP/FUTURES.
0 commit comments