Binance Connector JS
    Preparing search index...

    Interface VolumeParticipationFutureAlgoRequest

    Request parameters for volumeParticipationFutureAlgo operation in FutureAlgoApi. VolumeParticipationFutureAlgoRequest

    interface VolumeParticipationFutureAlgoRequest {
        clientAlgoId?: string;
        limitPrice?: number;
        positionSide?: string;
        quantity: number;
        recvWindow?: number;
        reduceOnly?: boolean;
        side: string;
        symbol: string;
        urgency: string;
    }
    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

    positionSide?: string

    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; Maximum notional per order is 200k, 2mm or 10mm, depending on symbol. Please reduce your size if you order is above the maximum notional per order.

    FutureAlgoApiVolumeParticipationFutureAlgo

    recvWindow?: number

    FutureAlgoApiVolumeParticipationFutureAlgo

    reduceOnly?: boolean

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

    FutureAlgoApiVolumeParticipationFutureAlgo

    side: string

    Trading side ( BUY or SELL )

    FutureAlgoApiVolumeParticipationFutureAlgo

    symbol: string

    Trading symbol eg. BTCUSDT

    FutureAlgoApiVolumeParticipationFutureAlgo

    urgency: string

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

    FutureAlgoApiVolumeParticipationFutureAlgo