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

org.knowm.xchange.kucoin.dto.KucoinOrderFlags Maven / Gradle / Ivy

package org.knowm.xchange.kucoin.dto;

import org.knowm.xchange.dto.Order.IOrderFlags;

/** https://docs.kucoin.com/#place-a-new-order */
public enum KucoinOrderFlags implements IOrderFlags {

  /* LimitOrder flags */

  /** Post only flag, invalid when timeInForce is IOC or FOK */
  POST_ONLY
  /** Orders not displayed in order book */
  ,
  HIDDEN
  /** Only visible portion of the order is displayed in the order book */
  ,
  ICEBERG;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy