binance-java-api is a lightweight Java library for the Binance API, supporting synchronous and asynchronous requests, as well as event streaming using WebSockets.
I would like to have some information on how to make trades.
According to the doc, we have to do this but it is no longer up to date.
So, from what I see, you have to go through CLIENT.newOrder(new NewOrder(....))
So I have a few questions:
What is the best TimeInForce GTC, IOC or FOK?
What exactly does "OrderType" stand for? For example, what is the difference between "LIMIT" and "MARKET"?
What exactly does "quantity" represent? The quantity of the currency, for example for bitcoin, 1 would mean 1 btc for x$ or 1$ for 0.xxxbtc?
I would like to have some information on how to make trades. According to the doc, we have to do this but it is no longer up to date. So, from what I see, you have to go through
CLIENT.newOrder(new NewOrder(....))
So I have a few questions:Thank you in advance, Xamez