Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/main/java/com/binance/api/client/domain/TimeInForce.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
*
* GTC (Good-Til-Canceled) orders are effective until they are executed or canceled.
* IOC (Immediate or Cancel) orders fills all or part of an order immediately and cancels the remaining part of the order.
* FOK (Fill or Kill) orders fills all in its entirety, otherwise, the entire order will be cancelled.
*
* @see <a href="http://www.investopedia.com/terms/t/timeinforce.asp">http://www.investopedia.com/terms/t/timeinforce.asp</a>
*/
public enum TimeInForce {
GTC,
IOC
IOC,
FOK
}