com.binance.api.client.domain.account.NewOCO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance-api-client Show documentation
Show all versions of binance-api-client Show documentation
Java implementation for Binance API
package com.binance.api.client.domain.account;
import org.apache.commons.lang3.builder.ToStringBuilder;
import com.binance.api.client.constant.BinanceApiConstants;
import com.binance.api.client.domain.OrderSide;
import com.binance.api.client.domain.TimeInForce;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class NewOCO {
/**
* Symbol to place the order on.
*/
private String symbol;
/**
* A unique Id for the entire orderList
*/
private String listClientOrderId;
/**
* Buy/Sell order side.
*/
private OrderSide side;
/**
* Quantity.
*/
private String quantity;
/**
* A unique Id for the limit order
*/
private String limitClientOrderId;
/**
* Price.
*/
private String price;
/**
* Used to make the LIMIT_MAKER leg an iceberg order.
*/
private String limitIcebergQty;
/**
* A unique Id for the stop loss/stop loss limit leg
*/
private String stopClientOrderId;
/**
* Stop Price.
*/
private String stopPrice;
/**
* If provided, stopLimitTimeInForce is required.
*/
private String stopLimitPrice;
/**
* Used with STOP_LOSS_LIMIT leg to make an iceberg order.
*/
private String stopIcebergQty;
/**
* Valid values are GTC/FOK/IOC
*/
private TimeInForce stopLimitTimeInForce;
/**
* Set the response JSON. ACK, RESULT, or FULL; default: RESULT.
*/
private NewOrderResponseType newOrderRespType;
/**
* Receiving window.
*/
private Long recvWindow;
/**
* Order timestamp.
*/
private long timestamp;
/**
* Creates a new OCO with all required parameters.
*/
public NewOCO(String symbol, OrderSide side, String quantity, String price, String stopPrice) {
this.symbol = symbol;
this.side = side;
this.quantity = quantity;
this.price = price;
this.stopPrice = stopPrice;
this.timestamp = System.currentTimeMillis();
this.recvWindow = BinanceApiConstants.DEFAULT_RECEIVING_WINDOW;
}
public String getSymbol() {
return symbol;
}
public void setSymbol(String symbol) {
this.symbol = symbol;
}
public String getListClientOrderId() {
return listClientOrderId;
}
public void setListClientOrderId(String listClientOrderId) {
this.listClientOrderId = listClientOrderId;
}
public OrderSide getSide() {
return side;
}
public void setSide(OrderSide side) {
this.side = side;
}
public String getQuantity() {
return quantity;
}
public void setQuantity(String quantity) {
this.quantity = quantity;
}
public String getLimitClientOrderId() {
return limitClientOrderId;
}
public void setLimitClientOrderId(String limitClientOrderId) {
this.limitClientOrderId = limitClientOrderId;
}
public String getPrice() {
return price;
}
public void setPrice(String price) {
this.price = price;
}
public String getLimitIcebergQty() {
return limitIcebergQty;
}
public void setLimitIcebergQty(String limitIcebergQty) {
this.limitIcebergQty = limitIcebergQty;
}
public String getStopClientOrderId() {
return stopClientOrderId;
}
public void setStopClientOrderId(String stopClientOrderId) {
this.stopClientOrderId = stopClientOrderId;
}
public String getStopPrice() {
return stopPrice;
}
public void setStopPrice(String stopPrice) {
this.stopPrice = stopPrice;
}
public String getStopLimitPrice() {
return stopLimitPrice;
}
public void setStopLimitPrice(String stopLimitPrice) {
this.stopLimitPrice = stopLimitPrice;
}
public String getStopIcebergQty() {
return stopIcebergQty;
}
public void setStopIcebergQty(String stopIcebergQty) {
this.stopIcebergQty = stopIcebergQty;
}
public TimeInForce getStopLimitTimeInForce() {
return stopLimitTimeInForce;
}
public void setStopLimitTimeInForce(TimeInForce stopLimitTimeInForce) {
this.stopLimitTimeInForce = stopLimitTimeInForce;
}
public NewOrderResponseType getNewOrderRespType() {
return newOrderRespType;
}
public void setNewOrderRespType(NewOrderResponseType newOrderRespType) {
this.newOrderRespType = newOrderRespType;
}
public Long getRecvWindow() {
return recvWindow;
}
public void setRecvWindow(Long recvWindow) {
this.recvWindow = recvWindow;
}
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
@Override
public String toString() {
return new ToStringBuilder(this, BinanceApiConstants.TO_STRING_BUILDER_STYLE).append("symbol", symbol)
.append("listClientOrderId", listClientOrderId)
.append("side", side)
.append("quantity", quantity)
.append("limitClientOrderId", limitClientOrderId)
.append("price", price)
.append("limitIcebergQty", limitIcebergQty)
.append("stopClientOrderId", stopClientOrderId)
.append("stopPrice", stopPrice)
.append("stopLimitPrice", stopLimitPrice)
.append("stopIcebergQty", stopIcebergQty)
.append("stopLimitTimeInForce", stopLimitTimeInForce)
.append("newOrderRespType", newOrderRespType)
.append("recvWindow", recvWindow)
.append("timestamp", timestamp)
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy