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

com.bybit.api.client.domain.trade.TimeInForce Maven / Gradle / Ivy

Go to download

The Official Java API connector for Bybit's HTTP and WebSocket APIs. Dive into a plethora of functionalities: - Market Data Retrieval - Trade Execution - Position Management - Account and Asset Info Retrieval - User and Upgrade Management — Public Websocket Streaming - Private Websocket Streaming - Lending Institution and Client - Broker Earning Data

The newest version!
package com.bybit.api.client.domain.trade;

import lombok.Getter;

@Getter
public enum TimeInForce {
    GOOD_TILL_CANCEL("GTC"),
    IMMEDIATE_OR_CANCEL("IOC"),
    FILL_OR_KILL("FOK"),
    POST_ONLY("PostOnly"),
    GTC("GTC"),
    IOC("IOC"),
    FOK("FOK");

    private final String description;

    TimeInForce(String description) {
        this.description = description;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy