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
Hey @rupurt! The application I'm currently building makes use of the newClientOrderId parameter which allows the client to set a custom ID string for orders. These custom IDs can then later be used to query and cancel orders. Currently, there's no way to provide any other parameters to the New Order and Cancel Order endpoints. You also can't override the recvWindow or set stopPrice, quoteOrderQty, etc. This is not really an issue since it's now possible to just use the HTTPClient module and build the requests yourself. However, it would be nice to take advantage of the response parsing that you have implemented in CancelOrder and CreateOrder. Might you be open for changing the public interface for create_order/7 and cancel_order_by_order_id/3 to allow setting some of these other parameters? If so, I might be able to find time for a PR.
The text was updated successfully, but these errors were encountered:
Hey @rupurt! The application I'm currently building makes use of the
newClientOrderId
parameter which allows the client to set a custom ID string for orders. These custom IDs can then later be used to query and cancel orders. Currently, there's no way to provide any other parameters to the New Order and Cancel Order endpoints. You also can't override therecvWindow
or setstopPrice
,quoteOrderQty
, etc. This is not really an issue since it's now possible to just use theHTTPClient
module and build the requests yourself. However, it would be nice to take advantage of the response parsing that you have implemented inCancelOrder
andCreateOrder
. Might you be open for changing the public interface forcreate_order/7
andcancel_order_by_order_id/3
to allow setting some of these other parameters? If so, I might be able to find time for a PR.The text was updated successfully, but these errors were encountered: