Interface OrderPositionInit

Plain-object form of OrderPosition.

interface OrderPositionInit {
    closePosition?: boolean;
    positionSide?: "LONG" | "SHORT";
    reduceOnly?: boolean;
}

Properties

closePosition?: boolean
positionSide?: "LONG" | "SHORT"
reduceOnly?: boolean