com.bybit.api.client.domain.trade.OrderStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bybit-java-api Show documentation
Show all versions of bybit-java-api Show documentation
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;
/**
* Status of a submitted order.
*/
@Getter
public enum OrderStatus {
CREATED("Created"),
NEW("New"),
REJECTED("Rejected"),
PARTIALLY_FILLED("PartiallyFilled"),
PARTIALLY_FILLED_CANCELED("PartiallyFilledCanceled"),
FILLED("Filled"),
CANCELLED("Cancelled"),
UNTRIGGERED("Untriggered"),
TRIGGERED("Triggered"),
DEACTIVATED("Deactivated"),
ACTIVE("Active");
private final String description;
OrderStatus(String description) {
this.description = description;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy