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

com.bybit.api.client.domain.position.MarginMode 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.position;

import lombok.Getter;

@Getter
public enum MarginMode {
    CROSS_MARGIN(0, "REGULAR_MARGIN"), // Cross margin
    ISOLATED_MARGIN(1, "ISOLATED_MARGIN"),
    PORTFOLIO_MARGIN(2,"PORTFOLIO_MARGIN");

    private final int value;
    private final String description;

    MarginMode(int value, String description) {
        this.value = value;
        this.description = description;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy