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

com.tigerbrokers.stock.openapi.client.struct.enums.OptionPrice Maven / Gradle / Ivy

package com.tigerbrokers.stock.openapi.client.struct.enums;

/**
 * Description:
 * Created on 2023/02/02.
 */
public enum OptionPrice {

  ITM(1),// in the money(include at the money)
  OTM(-1);// out of the money

  private Integer value;

  OptionPrice(Integer value) {
    this.value = value;
  }

  public Integer getValue() {
    return value;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy