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

info.bitrich.xchangestream.kraken.dto.KrakenOwnTrade Maven / Gradle / Ivy

There is a newer version: 5.2.1
Show newest version
package info.bitrich.xchangestream.kraken.dto;

import java.math.BigDecimal;

public class KrakenOwnTrade {
  /** order responsible for execution of trade */
  public String ordertxid;
  /** Position trade id */
  public String postxid;

  public String pair;
  /** unix timestamp of trade */
  public Double time;
  /** type of order (buy/sell) */
  public String type;

  public String ordertype;
  /** average price order was executed at (quote currency) */
  public BigDecimal price;
  /** total cost of order (quote currency) */
  public BigDecimal cost;
  /** total fee (quote currency) */
  public BigDecimal fee;
  /** volume (base currency) */
  public BigDecimal vol;
  /** initial margin (quote currency) */
  public BigDecimal margin;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy