You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.
The field clientOrderIdIs not passed through from a newOrder object to the binance API. This means we cannot set our own clientOrderId as specified by the APi documentation:
binance rest api doc:
newClientOrderId
STRING
NO
A unique id for the order. Automatically generated if not sent.
The text was updated successfully, but these errors were encountered:
wiigor
changed the title
binace-java-api doesn't pass through chosen clientOrderId when placing a new order.
binace-java-api doesn't pass through chosen newClientOrderId from the NewOrder object when placing a new order.
Feb 2, 2018
@headers(BinanceApiConstants.ENDPOINT_SECURITY_TYPE_SIGNED_HEADER)
@post("/api/v3/order")
Call newOrder(@query("symbol") String symbol, @query("side") OrderSide side, @query("type") OrderType type,
@query("timeInForce") TimeInForce timeInForce, @query("quantity") String quantity, @query("price") String price,
@query("stopPrice") String stopPrice, @query("icebergQty") String icebergQty,
@query("recvWindow") Long recvWindow, @query("timestamp") Long timestamp);
The field clientOrderIdIs not passed through from a newOrder object to the binance API. This means we cannot set our own clientOrderId as specified by the APi documentation:
binance rest api doc:
Please add @query("newClientOrderId") String newClientOrderId
The text was updated successfully, but these errors were encountered: