Class CoinoneTradeService
- java.lang.Object
-
- org.knowm.xchange.service.BaseExchangeService
-
- org.knowm.xchange.coinone.service.CoinoneBaseService
-
- org.knowm.xchange.coinone.service.CoinoneTradeServiceRaw
-
- org.knowm.xchange.coinone.service.CoinoneTradeService
-
- All Implemented Interfaces:
BaseService
,TradeService
public class CoinoneTradeService extends CoinoneTradeServiceRaw implements TradeService
- Author:
- interwater
-
-
Field Summary
-
Fields inherited from class org.knowm.xchange.coinone.service.CoinoneBaseService
apiKey, apiSecret, coinone, payloadCreator, signatureCreator, url
-
Fields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange
-
-
Constructor Summary
Constructors Constructor Description CoinoneTradeService(Exchange exchange)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
cancelOrder(CancelOrderParams orderParams)
cancels order with matching orderParamsOpenOrders
getOpenOrders()
Gets the open ordersCollection<Order>
getOrder(OrderQueryParams... orderQueryParams)
get's the latest order form the order book that with matching orderQueryParamsString
placeLimitOrder(LimitOrder limitOrder)
Place a limit orderString
placeStopOrder(StopOrder stopOrder)
Place a stop order-
Methods inherited from class org.knowm.xchange.coinone.service.CoinoneTradeServiceRaw
cancerOrder, getOrderInfo, placeLimitOrderRaw
-
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
cancelOrder, changeOrder, createOpenOrdersParams, createTradeHistoryParams, getOpenOrders, getOrder, getTradeHistory, placeMarketOrder, verifyOrder, verifyOrder
-
-
-
-
Constructor Detail
-
CoinoneTradeService
public CoinoneTradeService(Exchange exchange)
Constructor- Parameters:
exchange
-
-
-
Method Detail
-
getOpenOrders
public OpenOrders getOpenOrders() throws IOException
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
-
placeLimitOrder
public String placeLimitOrder(LimitOrder limitOrder) throws IOException, NotAvailableFromExchangeException
Description copied from interface:TradeService
Place a limit orderIf your orders amount or limit price does to meet the restrictions dictated by
CurrencyPairMetaData
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 dataNotAvailableFromExchangeException
- - Indication that the exchange does not support the requested function or data- See Also:
OrderValuesHelper
-
placeStopOrder
public String placeStopOrder(StopOrder stopOrder) throws IOException
Description copied from interface:TradeService
Place a stop orderIf your orders amount or spot price does to meet the restrictions dictated by
CurrencyPairMetaData
then the exchange will reject your order. UseOrderValuesHelper
to validate and / or adjust those values while you'r building an order.- Specified by:
placeStopOrder
in interfaceTradeService
- Returns:
- the order ID
- Throws:
IOException
- - Indication that a networking error occurred while fetching JSON data- See Also:
OrderValuesHelper
-
getOrder
public Collection<Order> getOrder(OrderQueryParams... orderQueryParams) throws IOException
Description copied from interface:TradeService
get's the latest order form the order book that with matching orderQueryParams- Specified by:
getOrder
in interfaceTradeService
- Returns:
- the order as it is on the exchange.
- Throws:
IOException
- - Indication that a networking error occurred while fetching JSON data
-
cancelOrder
public boolean cancelOrder(CancelOrderParams orderParams) throws ExchangeException, NotAvailableFromExchangeException, NotYetImplementedForExchangeException, IOException
Description copied from interface:TradeService
cancels order with matching orderParams- Specified by:
cancelOrder
in interfaceTradeService
- Returns:
- true if order was successfully cancelled, false otherwise.
- Throws:
ExchangeException
- - Indication that the exchange reported some kind of error with the request or responseNotAvailableFromExchangeException
- - Indication that the exchange does not support the requested function or dataNotYetImplementedForExchangeException
- - Indication that the exchange supports the requested function or data, but it has not yet been implementedIOException
- - Indication that a networking error occurred while fetching JSON data
-
-