Package org.knowm.xchange.enigma.service
Class EnigmaTradeService
java.lang.Object
org.knowm.xchange.service.BaseExchangeService
org.knowm.xchange.enigma.service.EnigmaBaseService
org.knowm.xchange.enigma.service.EnigmaTradeServiceRaw
org.knowm.xchange.enigma.service.EnigmaTradeService
- All Implemented Interfaces:
BaseService
,TradeService
public class EnigmaTradeService extends EnigmaTradeServiceRaw implements TradeService
-
Field Summary
Fields inherited from class org.knowm.xchange.enigma.service.EnigmaBaseService
enigmaAuthenticated, nonceFactory
Fields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange
-
Constructor Summary
Constructors Constructor Description EnigmaTradeService(Exchange exchange)
-
Method Summary
Modifier and Type Method Description boolean
cancelOrder(String orderId)
cancels order with matching orderId (conveniance method, typical just delegate to cancelOrder(CancelOrderByIdParams))OpenOrders
getOpenOrders()
Gets the open ordersString
placeLimitOrder(LimitOrder limitOrder)
Place a limit orderString
placeMarketOrder(MarketOrder marketOrder)
Place a market orderMethods inherited from class org.knowm.xchange.enigma.service.EnigmaTradeServiceRaw
askForQuote, cancelOrder, executeQuoteRequest, getProducts, openOrders, placeLimitOrderRequest, placeMarketOrderRequest, submitOrder
Methods inherited from class org.knowm.xchange.enigma.service.EnigmaBaseService
accessToken, login
Methods inherited from class org.knowm.xchange.service.BaseExchangeService
verifyOrder, verifyOrder, verifyOrder
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.knowm.xchange.service.trade.TradeService
cancelAllOrders, cancelOrder, changeOrder, createOpenOrdersParams, createTradeHistoryParams, getOpenOrders, getOpenPositions, getOrder, getOrder, getRequiredCancelOrderParamClasses, getRequiredOrderQueryParamClass, getTradeHistory, placeStopOrder, verifyOrder, verifyOrder
-
Constructor Details
-
EnigmaTradeService
-
-
Method Details
-
cancelOrder
Description copied from interface:TradeService
cancels order with matching orderId (conveniance method, typical just delegate to cancelOrder(CancelOrderByIdParams))- Specified by:
cancelOrder
in interfaceTradeService
- Returns:
- true if order was successfully cancelled, false otherwise.
- Throws:
IOException
- - Indication that a networking error occurred while fetching JSON dataEnigmaException
-
getOpenOrders
Description copied from interface:TradeService
Gets the open orders- Specified by:
getOpenOrders
in interfaceTradeService
- Returns:
- the open orders, null if some sort of error occurred. Implementers should log the error.
- Throws:
IOException
- - Indication that a networking error occurred while fetching JSON data
-
placeMarketOrder
Description copied from interface:TradeService
Place a market orderIf your orders amount does to meet the restrictions dictated by
InstrumentMetaData
then the exchange will reject your order. UseOrderValuesHelper
to validate and / or adjust it while you'r building an order.- Specified by:
placeMarketOrder
in interfaceTradeService
- Returns:
- the order ID
- Throws:
IOException
- - Indication that a networking error occurred while fetching JSON data- See Also:
OrderValuesHelper
-
placeLimitOrder
Description copied from interface:TradeService
Place a limit orderIf your orders amount or limit price does to meet the restrictions dictated by
InstrumentMetaData
then the exchange will reject your order. UseOrderValuesHelper
to validate and / or adjust those values while you'r building an order.- Specified by:
placeLimitOrder
in interfaceTradeService
- Returns:
- the order ID
- Throws:
IOException
- - Indication that a networking error occurred while fetching JSON data- See Also:
OrderValuesHelper
-