Class IdexTradeService
- All Implemented Interfaces:
BaseService,TradeService
-
Field Summary
Fields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancancels order with matching orderId (conveniance method, typical just delegate to cancelOrder(CancelOrderByIdParams))booleancancelOrder(CancelOrderParams cancelOrderParams) cancels order with matching orderParamsfinal OrderReqcreateNormalizedLimitOrderReq(Currency baseCurrency, Currency counterCurrency, Order.OrderType type, BigDecimal limitPrice, BigDecimal originalAmount, String contractAddress, BigInteger nonce, BigInteger expires) CreateOpenOrdersParamsobject specific to this exchange.CreateTradeHistoryParamsobject specific to this exchange.Gets the open ordersgetOpenOrders(OpenOrdersParams openOrdersParams) Gets the open ordersgetTradeHistory(TradeHistoryParams tradeHistoryParams) Fetch the history of user trades.placeLimitOrder(LimitOrder placeOrder) returns OrderHash so you can fetch it and cancel it...placeMarketOrder(MarketOrder marketOrder) Place a market orderplaceStopOrder(StopOrder stopOrder) Place a stop ordervoidverifyOrder(LimitOrder limitOrder) Verify the order against the exchange meta data.voidverifyOrder(MarketOrder marketOrder) Verify the order against the exchange meta data.Methods inherited from class org.knowm.xchange.service.BaseExchangeService
verifyOrderMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.knowm.xchange.service.trade.TradeService
cancelAllOrders, changeOrder, getOpenPositions, getOrder, getOrder, getRequiredCancelOrderParamClasses, getRequiredOrderQueryParamClass
-
Constructor Details
-
IdexTradeService
-
-
Method Details
-
getOpenOrders
Description copied from interface:TradeServiceGets the open orders- Specified by:
getOpenOrdersin interfaceTradeService- Returns:
- the open orders, null if some sort of error occurred. Implementers should log the error.
-
getOpenOrders
Description copied from interface:TradeServiceGets the open orders- Specified by:
getOpenOrdersin interfaceTradeService- Parameters:
openOrdersParams- The parameters describing the filter. Note thatOpenOrdersParamsis an empty interface. Exchanges should implement its own params object. Params should be create withTradeService.createOpenOrdersParams().- Returns:
- the open orders, null if some sort of error occurred. Implementers should log the error.
-
cancelOrder
Description copied from interface:TradeServicecancels order with matching orderId (conveniance method, typical just delegate to cancelOrder(CancelOrderByIdParams))- Specified by:
cancelOrderin interfaceTradeService- Returns:
- true if order was successfully cancelled, false otherwise.
-
cancelOrder
Description copied from interface:TradeServicecancels order with matching orderParams- Specified by:
cancelOrderin interfaceTradeService- Returns:
- true if order was successfully cancelled, false otherwise.
-
getTradeHistory
Description copied from interface:TradeServiceFetch the history of user trades.If you are calling this method for single exchange, known at the development time, you may pass an object of specific *TradeHistoryParam class that is nested it that exchange's trade service.
If, however, you are fetching user trade history from many exchanges using the same code, you will find useful to create the parameter object with
TradeService.createTradeHistoryParams()and check which parameters are required or supported using instanceof operator. See subinterfaces ofTradeHistoryParams. Note that whether an interface is required or supported will vary from exchange to exchange and it's described only through the javadoc.There is also implementation of all the common interfaces,
TradeHistoryParamsAll, that, with all properties set non-null, should work with any exchange.Some exchanges allow extra parameters, not covered by any common interface. To access them, you will have to use the object returned by
TradeService.createTradeHistoryParams()and cast it to the exchange-specific type.- Specified by:
getTradeHistoryin interfaceTradeService- Parameters:
tradeHistoryParams- The parameters describing the filter. Note thatTradeHistoryParamsis an empty interface. Exact set of interfaces that are required or supported by this method is described by the type of object returned fromTradeService.createTradeHistoryParams()and the javadoc of the method.- Returns:
- UserTrades as returned by the exchange API
- See Also:
-
createOpenOrdersParams
Description copied from interface:TradeServiceCreateOpenOrdersParamsobject specific to this exchange. Object created by this method may be used to discover supported and requiredTradeService.getOpenOrders(OpenOrdersParams)parameters and should be passed only to the method in the same class as the createOpenOrdersParams that created the object.- Specified by:
createOpenOrdersParamsin interfaceTradeService
-
verifyOrder
Description copied from interface:TradeServiceVerify the order against the exchange meta data. Most implementations will require thatExchange.remoteInit()be called before this method- Specified by:
verifyOrderin interfaceTradeService- Overrides:
verifyOrderin classBaseExchangeService
-
verifyOrder
Description copied from interface:TradeServiceVerify the order against the exchange meta data. Most implementations will require thatExchange.remoteInit()be called before this method- Specified by:
verifyOrderin interfaceTradeService- Overrides:
verifyOrderin classBaseExchangeService
-
createTradeHistoryParams
Description copied from interface:TradeServiceCreateTradeHistoryParamsobject specific to this exchange. Object created by this method may be used to discover supported and requiredTradeService.getTradeHistory(TradeHistoryParams)parameters and should be passed only to the method in the same class as the createTradeHistoryParams that created the object.- Specified by:
createTradeHistoryParamsin interfaceTradeService
-
placeMarketOrder
Description copied from interface:TradeServicePlace a market orderIf your orders amount does to meet the restrictions dictated by
InstrumentMetaDatathen the exchange will reject your order. UseOrderValuesHelperto validate and / or adjust it while you'r building an order.- Specified by:
placeMarketOrderin interfaceTradeService- Returns:
- the order ID
- See Also:
-
placeStopOrder
Description copied from interface:TradeServicePlace a stop orderIf your orders amount or spot price does to meet the restrictions dictated by
InstrumentMetaDatathen the exchange will reject your order. UseOrderValuesHelperto validate and / or adjust those values while you'r building an order.- Specified by:
placeStopOrderin interfaceTradeService- Returns:
- the order ID
- See Also:
-
placeLimitOrder
returns OrderHash so you can fetch it and cancel it... but there is a OrderNumber that you can intercept if you need to.- Specified by:
placeLimitOrderin interfaceTradeService- Returns:
- the order ID
- See Also:
-
createNormalizedLimitOrderReq
public final OrderReq createNormalizedLimitOrderReq(Currency baseCurrency, Currency counterCurrency, Order.OrderType type, BigDecimal limitPrice, BigDecimal originalAmount, String contractAddress, BigInteger nonce, BigInteger expires) -
getApiKey
-