Class BitcointoyouTradeService
java.lang.Object
org.knowm.xchange.service.BaseExchangeService
org.knowm.xchange.bitcointoyou.service.polling.BitcointoyouBasePollingService
org.knowm.xchange.bitcointoyou.service.polling.BitcointoyouTradeServiceRaw
org.knowm.xchange.bitcointoyou.service.polling.BitcointoyouTradeService
- All Implemented Interfaces:
BaseService,TradeService
TradeService implementation for Bitcointoyou Exchange.- Author:
- Jonathas Carrijo, Danilo Guimaraes
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class -
Field Summary
Fields inherited from class org.knowm.xchange.bitcointoyou.service.polling.BitcointoyouBasePollingService
bitcointoyouFields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancancelOrder(String orderId) cancels order with matching orderId (conveniance method, typical just delegate to cancelOrder(CancelOrderByIdParams))booleancancelOrder(CancelOrderParams orderParams) cancels order with matching orderParamsCreateOpenOrdersParamsobject specific to this exchange.CreateTradeHistoryParamsthat supportsTradeHistoryParamsTimeSpanandTradeHistoryParamCurrencyPair.Gets the open ordersgetOpenOrders(OpenOrdersParams params) Gets the open ordersgetOrder(OrderQueryParams... orderQueryParams) get's the latest order form the order book that with matching orderQueryParamsplaceLimitOrder(LimitOrder limitOrder) Place a limit orderplaceMarketOrder(MarketOrder marketOrder) Place a market orderMethods inherited from class org.knowm.xchange.bitcointoyou.service.polling.BitcointoyouTradeServiceRaw
buy, cancel, returnOpenOrders, returnOrderById, sellMethods inherited from class org.knowm.xchange.service.BaseExchangeService
verifyOrder, verifyOrder, 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, getRequiredCancelOrderParamClasses, getRequiredOrderQueryParamClass, getTradeHistory, placeStopOrder, verifyOrder, verifyOrder
-
Constructor Details
-
BitcointoyouTradeService
Constructor- Parameters:
exchange- the Bitcointoyou Exchange
-
-
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.
- Throws:
IOException- - Indication that a networking error occurred while fetching JSON data
-
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
- Throws:
IOException- - Indication that a networking error occurred while fetching JSON data- See Also:
-
placeLimitOrder
Description copied from interface:TradeServicePlace a limit orderIf your orders amount or limit 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:
placeLimitOrderin interfaceTradeService- Returns:
- the order ID
- Throws:
IOException- - Indication that a networking error occurred while fetching JSON data- See Also:
-
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.
- Throws:
IOException- - Indication that a networking error occurred while fetching JSON data
-
cancelOrder
Description copied from interface:TradeServicecancels order with matching orderParams- Specified by:
cancelOrderin interfaceTradeService- Returns:
- true if order was successfully cancelled, false otherwise.
- Throws:
IOException- - Indication that a networking error occurred while fetching JSON data
-
createTradeHistoryParams
CreateTradeHistoryParamsthat supportsTradeHistoryParamsTimeSpanandTradeHistoryParamCurrencyPair.- Specified by:
createTradeHistoryParamsin interfaceTradeService
-
getOrder
Description copied from interface:TradeServiceget's the latest order form the order book that with matching orderQueryParams- Specified by:
getOrderin interfaceTradeService- Returns:
- the order as it is on the exchange.
- Throws:
IOException- - Indication that a networking error occurred while fetching JSON data
-
getOpenOrders
public OpenOrders getOpenOrders(OpenOrdersParams params) throws ExchangeException, NotAvailableFromExchangeException, NotYetImplementedForExchangeException, IOException Description copied from interface:TradeServiceGets the open orders- Specified by:
getOpenOrdersin interfaceTradeService- Parameters:
params- 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.
- 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
-
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
-