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

org.knowm.xchange.simulated.Fill Maven / Gradle / Ivy

package org.knowm.xchange.simulated;

import lombok.Data;
import org.knowm.xchange.dto.trade.UserTrade;

/**
 * Represents a trade against a {@link Level3OrderBook} for a given {@link #getApiKey()} (user),
 * indicating whether the fill was executed as the market maker.
 *
 * @author Graham Crockford
 */
@Data
final class Fill {
  private final String apiKey;
  private final UserTrade trade;
  private final boolean taker;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy