Uses of Enum Class
org.knowm.xchange.kraken.dto.trade.KrakenType
Packages that use KrakenType
Package
Description
-
Uses of KrakenType in org.knowm.xchange.kraken
Methods in org.knowm.xchange.kraken with parameters of type KrakenTypeModifier and TypeMethodDescriptionstatic Order.OrderTypeKrakenAdapters.adaptOrderType(KrakenType krakenType) -
Uses of KrakenType in org.knowm.xchange.kraken.dto.marketdata
Methods in org.knowm.xchange.kraken.dto.marketdata that return KrakenTypeConstructors in org.knowm.xchange.kraken.dto.marketdata with parameters of type KrakenTypeModifierConstructorDescriptionKrakenPublicTrade(BigDecimal price, BigDecimal volume, double time, KrakenType type, KrakenOrderType orderType, String miscellaneous, String tradeId) -
Uses of KrakenType in org.knowm.xchange.kraken.dto.trade
Methods in org.knowm.xchange.kraken.dto.trade that return KrakenTypeModifier and TypeMethodDescriptionstatic KrakenTypeKrakenType.fromOrderType(Order.OrderType type) static KrakenTypeKrakenType.fromString(String typeString) KrakenOpenPosition.getType()KrakenOrderDescription.getType()KrakenStandardOrder.getType()KrakenStandardOrder.KrakenOrderBuilder.getType()KrakenTrade.getType()static KrakenTypeReturns the enum constant of this class with the specified name.static KrakenType[]KrakenType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.knowm.xchange.kraken.dto.trade with parameters of type KrakenTypeModifier and TypeMethodDescriptionKrakenStandardOrder.getLimitOrderBuilder(CurrencyPair currencyPair, KrakenType type, String limitPrice, BigDecimal volume) KrakenStandardOrder.getMarketOrderBuilder(CurrencyPair currencyPair, KrakenType type, BigDecimal volume) KrakenStandardOrder.getSettlePositionOrderBuilder(CurrencyPair currencyPair, KrakenType type, BigDecimal volume) KrakenStandardOrder.getStopLossAndLimitOrderBuilder(CurrencyPair currencyPair, KrakenType type, String stopLossPrice, String limitPrice, BigDecimal volume) KrakenStandardOrder.getStopLossLimitOrderBuilder(CurrencyPair currencyPair, KrakenType type, String stopLossTriggerPrice, String triggeredLimitPrice, BigDecimal volume) KrakenStandardOrder.getStopLossOrderBuilder(CurrencyPair currencyPair, KrakenType type, String stopLossPrice, BigDecimal volume) KrakenStandardOrder.getStopLossProfitLimitOrderBuilder(CurrencyPair currencyPair, KrakenType type, String stopLossPrice, String takeProfitPrice, BigDecimal volume) KrakenStandardOrder.getStopLossProfitOrderBuilder(CurrencyPair currencyPair, KrakenType type, String stopLossPrice, String takeProfitPrice, BigDecimal volume) KrakenStandardOrder.getTakeProfitLimitOrderBuilder(CurrencyPair currencyPair, KrakenType type, String takeProfitTriggerPrice, String triggeredLimitPrice, BigDecimal volume) KrakenStandardOrder.getTakeProfitOrderBuilder(CurrencyPair currencyPair, KrakenType type, String takeProfitPrice, BigDecimal volume) KrakenStandardOrder.getTrailingStopLimitOrderBuilder(CurrencyPair currencyPair, KrakenType type, String trailingStopOffset, String triggeredLimitOffset, BigDecimal volume) KrakenStandardOrder.getTrailingStopOrderBuilder(CurrencyPair currencyPair, KrakenType type, String trailingStopOffset, BigDecimal volume) Constructors in org.knowm.xchange.kraken.dto.trade with parameters of type KrakenTypeModifierConstructorDescriptionKrakenOpenPosition(String orderTxId, String assetPair, long tradeUnixTimestamp, KrakenType type, KrakenOrderType orderType, BigDecimal cost, BigDecimal fee, BigDecimal volume, BigDecimal volumeClosed, BigDecimal margin, BigDecimal value, BigDecimal netDifference, String miscellaneous, Set<KrakenOrderFlags> orderFlags, BigDecimal volumeInQuoteCurrency) ConstructorKrakenOrderDescription(String assetPair, KrakenType type, KrakenOrderType orderType, BigDecimal price, BigDecimal secondaryPrice, String leverage, String positionTxId, String orderDescription, String closeDescription) ConstructorKrakenTrade(String orderTxId, String assetPair, double unixTimestamp, KrakenType type, KrakenOrderType orderType, BigDecimal price, BigDecimal cost, BigDecimal fee, BigDecimal volume, BigDecimal margin, String miscellaneous, String closing, String positionStatus, BigDecimal averageClosePrice, BigDecimal closeCost, BigDecimal closeFee, BigDecimal closeVolume, BigDecimal closeMargin, BigDecimal netDifference, List<String> tradeIds) Constructor