com.binance.api.client.domain.TimeInForce Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance-api-client Show documentation
Show all versions of binance-api-client Show documentation
Java implementation for Binance API
package com.binance.api.client.domain;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* 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
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public enum TimeInForce {
GTC,
IOC,
FOK
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy