diff --git a/src/types/v5-shared.ts b/src/types/v5-shared.ts index 9e60a30..4677c9f 100644 --- a/src/types/v5-shared.ts +++ b/src/types/v5-shared.ts @@ -153,6 +153,16 @@ export type StopOrderTypeV5 = */ export type PositionIdx = 0 | 1 | 2; +/** + * Position status. + * + * - 'Normal' + * - 'Liq' in the liquidation progress + * - 'Adl' in the auto-deleverage progress + */ +export type PositionStatusV5 = 'Normal' | 'Liq' | 'Adl'; +export type PositionSideV5 = 'Buy' | 'Sell'; + export type OptionTypeV5 = 'Call' | 'Put'; /**