All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sealake.binance.api.client.domain.TimeInForce Maven / Gradle / Ivy

package net.sealake.binance.api.client.domain;

/**
 * Time in force to indicate how long an order will remain active before it is executed or expires.
 *
 * 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 http://www.investopedia.com/terms/t/timeinforce.asp
 */
public enum TimeInForce {
  GTC,
  IOC,
  FOK
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy