All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bybit.api.client.domain.trade.request.PlaceOrderRequest Maven / Gradle / Ivy

Go to download

The Official Java API connector for Bybit's HTTP and WebSocket APIs. Dive into a plethora of functionalities: - Market Data Retrieval - Trade Execution - Position Management - Account and Asset Info Retrieval - User and Upgrade Management — Public Websocket Streaming - Private Websocket Streaming - Lending Institution and Client - Broker Earning Data

The newest version!
package com.bybit.api.client.domain.trade.request;

import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Builder;
import lombok.Data;

@Builder
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
public class PlaceOrderRequest {
    private String category;
    private String symbol;
    private Integer isLeverage;
    private String side;
    private String orderType;
    private String qty;
    private String price;
    private Integer triggerDirection;
    private String orderFilter;
    private String triggerPrice;
    private String triggerBy;
    private String orderIv;
    private String timeInForce;
    private Integer positionIdx;
    private String orderLinkId;
    private String takeProfit;
    private String stopLoss;
    private String tpTriggerBy;
    private String slTriggerBy;
    private Boolean reduceOnly;
    private Boolean closeOnTrigger;
    private String smpType;
    private Boolean mmp;
    private String tpslMode;
    private String tpLimitPrice;
    private String slLimitPrice;
    private String tpOrderType;
    private String slOrderType;
    private String marketUnit;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy