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

org.knowm.xchange.bitflyer.dto.trade.BitflyerSide Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package org.knowm.xchange.bitflyer.dto.trade;

import org.knowm.xchange.dto.Order;

public enum BitflyerSide {
  BUY,
  SELL;

  public static BitflyerSide fromOrderType(Order.OrderType orderType) {
    return orderType == Order.OrderType.ASK ? SELL : BUY;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy