Binance Connector JS
    Preparing search index...

    Interface VolumeParticipationFutureAlgoRequest

    Request parameters for volumeParticipationFutureAlgo operation in FutureAlgoApi. VolumeParticipationFutureAlgoRequest

    interface VolumeParticipationFutureAlgoRequest {
        clientAlgoId?: string;
        limitPrice?: number;
        positionSide?: VolumeParticipationFutureAlgoPositionSideEnum;
        quantity: number;
        recvWindow?: number | bigint;
        reduceOnly?: boolean;
        side: VolumeParticipationFutureAlgoSideEnum;
        symbol: string;
        urgency: VolumeParticipationFutureAlgoUrgencyEnum;
    }
    Index

    Properties

    clientAlgoId?: string

    A unique id among Algo orders (length should be 32 characters), If it is not sent, we will give default value

    FutureAlgoApiVolumeParticipationFutureAlgo

    limitPrice?: number

    Limit price of the order; If it is not sent, will place order by market price by default

    FutureAlgoApiVolumeParticipationFutureAlgo

    Default BOTH for One-way Mode ; LONG or SHORT for Hedge Mode. It must be sent in Hedge Mode.

    FutureAlgoApiVolumeParticipationFutureAlgo

    quantity: number

    Quantity of base asset; The notional (quantity * mark price(base asset)) must be more than the equivalent of 10,000 USDT and less than the equivalent of 1,000,000 USDT

    FutureAlgoApiVolumeParticipationFutureAlgo

    recvWindow?: number | bigint

    Request validity window in milliseconds

    FutureAlgoApiVolumeParticipationFutureAlgo

    reduceOnly?: boolean

    "true" or "false". Default "false"; Cannot be sent in Hedge Mode; Cannot be sent when you open a position

    FutureAlgoApiVolumeParticipationFutureAlgo

    Trading side ( BUY or SELL )

    FutureAlgoApiVolumeParticipationFutureAlgo

    symbol: string

    Trading symbol eg. BTCUSDT

    FutureAlgoApiVolumeParticipationFutureAlgo

    Represent the relative speed of the current execution; ENUM: LOW, MEDIUM, HIGH

    FutureAlgoApiVolumeParticipationFutureAlgo