/xchange-coinmate/src/main/java/org/knowm/xchange/coinmate/service/CoinmateTradeServiceRaw.java

http://github.com/timmolter/XChange · Java · 391 lines · 314 code · 53 blank · 24 comment · 0 complexity · 6c53d926f066ccf9360ea82d92995ba7 MD5 · raw file

  1. /*
  2. * The MIT License
  3. *
  4. * Copyright 2015-2016 Coinmate.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. package org.knowm.xchange.coinmate.service;
  25. import java.io.IOException;
  26. import java.math.BigDecimal;
  27. import org.knowm.xchange.Exchange;
  28. import org.knowm.xchange.client.ExchangeRestProxyBuilder;
  29. import org.knowm.xchange.coinmate.CoinmateAuthenticated;
  30. import org.knowm.xchange.coinmate.dto.trade.CoinmateCancelOrderResponse;
  31. import org.knowm.xchange.coinmate.dto.trade.CoinmateCancelOrderWithInfoResponse;
  32. import org.knowm.xchange.coinmate.dto.trade.CoinmateOpenOrders;
  33. import org.knowm.xchange.coinmate.dto.trade.CoinmateOrderHistory;
  34. import org.knowm.xchange.coinmate.dto.trade.CoinmateOrders;
  35. import org.knowm.xchange.coinmate.dto.trade.CoinmateReplaceResponse;
  36. import org.knowm.xchange.coinmate.dto.trade.CoinmateTradeHistory;
  37. import org.knowm.xchange.coinmate.dto.trade.CoinmateTradeResponse;
  38. import org.knowm.xchange.coinmate.dto.trade.CoinmateTransactionHistory;
  39. import org.knowm.xchange.coinmate.dto.trade.CoinmateTransferHistory;
  40. /** @author Martin Stachon */
  41. public class CoinmateTradeServiceRaw extends CoinmateBaseService {
  42. private final CoinmateDigest signatureCreator;
  43. private final CoinmateAuthenticated coinmateAuthenticated;
  44. public CoinmateTradeServiceRaw(Exchange exchange) {
  45. super(exchange);
  46. this.coinmateAuthenticated =
  47. ExchangeRestProxyBuilder.forInterface(
  48. CoinmateAuthenticated.class, exchange.getExchangeSpecification())
  49. .build();
  50. this.signatureCreator =
  51. CoinmateDigest.createInstance(
  52. exchange.getExchangeSpecification().getSecretKey(),
  53. exchange.getExchangeSpecification().getUserName(),
  54. exchange.getExchangeSpecification().getApiKey());
  55. }
  56. public CoinmateTransactionHistory getCoinmateTransactionHistory(
  57. int offset, Integer limit, String sort, Long timestampFrom, Long timestampTo, String orderId)
  58. throws IOException {
  59. CoinmateTransactionHistory transactionHistory =
  60. coinmateAuthenticated.getTransactionHistory(
  61. exchange.getExchangeSpecification().getApiKey(),
  62. exchange.getExchangeSpecification().getUserName(),
  63. signatureCreator,
  64. exchange.getNonceFactory(),
  65. offset,
  66. limit,
  67. sort,
  68. timestampFrom,
  69. timestampTo,
  70. orderId);
  71. throwExceptionIfError(transactionHistory);
  72. return transactionHistory;
  73. }
  74. public CoinmateTradeHistory getCoinmateTradeHistory(
  75. String currencyPair,
  76. int limit,
  77. String order,
  78. String startId,
  79. Long timestampFrom,
  80. Long timestampTo)
  81. throws IOException {
  82. CoinmateTradeHistory tradeHistory =
  83. coinmateAuthenticated.getTradeHistory(
  84. exchange.getExchangeSpecification().getApiKey(),
  85. exchange.getExchangeSpecification().getUserName(),
  86. signatureCreator,
  87. exchange.getNonceFactory(),
  88. limit,
  89. startId,
  90. order,
  91. timestampFrom,
  92. timestampTo,
  93. currencyPair,
  94. null);
  95. throwExceptionIfError(tradeHistory);
  96. return tradeHistory;
  97. }
  98. public CoinmateTransferHistory getCoinmateTransferHistory() throws IOException {
  99. CoinmateTransferHistory transferHistory =
  100. coinmateAuthenticated.getTransferHistory(
  101. exchange.getExchangeSpecification().getApiKey(),
  102. exchange.getExchangeSpecification().getUserName(),
  103. signatureCreator,
  104. exchange.getNonceFactory(),
  105. null,
  106. null,
  107. null,
  108. null,
  109. null,
  110. null);
  111. throwExceptionIfError(transferHistory);
  112. return transferHistory;
  113. }
  114. public CoinmateOrderHistory getCoinmateOrderHistory(String currencyPair, int limit)
  115. throws IOException {
  116. CoinmateOrderHistory orderHistory =
  117. coinmateAuthenticated.getOrderHistory(
  118. exchange.getExchangeSpecification().getApiKey(),
  119. exchange.getExchangeSpecification().getUserName(),
  120. signatureCreator,
  121. exchange.getNonceFactory(),
  122. currencyPair,
  123. limit);
  124. throwExceptionIfError(orderHistory);
  125. return orderHistory;
  126. }
  127. public CoinmateOpenOrders getCoinmateOpenOrders(String currencyPair) throws IOException {
  128. CoinmateOpenOrders openOrders =
  129. coinmateAuthenticated.getOpenOrders(
  130. exchange.getExchangeSpecification().getApiKey(),
  131. exchange.getExchangeSpecification().getUserName(),
  132. signatureCreator,
  133. exchange.getNonceFactory(),
  134. currencyPair);
  135. throwExceptionIfError(openOrders);
  136. return openOrders;
  137. }
  138. public CoinmateCancelOrderResponse cancelCoinmateOrder(String orderId) throws IOException {
  139. CoinmateCancelOrderResponse response =
  140. coinmateAuthenticated.cancelOder(
  141. exchange.getExchangeSpecification().getApiKey(),
  142. exchange.getExchangeSpecification().getUserName(),
  143. signatureCreator,
  144. exchange.getNonceFactory(),
  145. orderId);
  146. throwExceptionIfError(response);
  147. return response;
  148. }
  149. public CoinmateOrders getCoinmateOrderById(String orderId) throws IOException {
  150. CoinmateOrders response =
  151. coinmateAuthenticated.getOrderById(
  152. exchange.getExchangeSpecification().getApiKey(),
  153. exchange.getExchangeSpecification().getUserName(),
  154. signatureCreator,
  155. exchange.getNonceFactory(),
  156. orderId);
  157. throwExceptionIfError(response);
  158. return response;
  159. }
  160. public CoinmateCancelOrderWithInfoResponse cancelCoinmateOrderWithInfo(String orderId)
  161. throws IOException {
  162. CoinmateCancelOrderWithInfoResponse response =
  163. coinmateAuthenticated.cancelOderWithInfo(
  164. exchange.getExchangeSpecification().getApiKey(),
  165. exchange.getExchangeSpecification().getUserName(),
  166. signatureCreator,
  167. exchange.getNonceFactory(),
  168. orderId);
  169. throwExceptionIfError(response);
  170. return response;
  171. }
  172. public CoinmateTradeResponse buyCoinmateLimit(
  173. BigDecimal amount,
  174. BigDecimal price,
  175. String currencyPair,
  176. BigDecimal stopPrice,
  177. Integer hidden,
  178. Integer postOnly,
  179. Integer immediateOrCancel,
  180. Integer trailing)
  181. throws IOException {
  182. CoinmateTradeResponse response =
  183. coinmateAuthenticated.buyLimit(
  184. exchange.getExchangeSpecification().getApiKey(),
  185. exchange.getExchangeSpecification().getUserName(),
  186. signatureCreator,
  187. exchange.getNonceFactory(),
  188. amount,
  189. price,
  190. currencyPair,
  191. stopPrice,
  192. hidden,
  193. postOnly,
  194. immediateOrCancel,
  195. trailing);
  196. throwExceptionIfError(response);
  197. return response;
  198. }
  199. public CoinmateTradeResponse sellCoinmateLimit(
  200. BigDecimal amount,
  201. BigDecimal price,
  202. String currencyPair,
  203. BigDecimal stopPrice,
  204. Integer hidden,
  205. Integer postOnly,
  206. Integer immediateOrCancel,
  207. Integer trailing)
  208. throws IOException {
  209. CoinmateTradeResponse response =
  210. coinmateAuthenticated.sellLimit(
  211. exchange.getExchangeSpecification().getApiKey(),
  212. exchange.getExchangeSpecification().getUserName(),
  213. signatureCreator,
  214. exchange.getNonceFactory(),
  215. amount,
  216. price,
  217. currencyPair,
  218. stopPrice,
  219. hidden,
  220. postOnly,
  221. immediateOrCancel,
  222. trailing);
  223. throwExceptionIfError(response);
  224. return response;
  225. }
  226. public CoinmateReplaceResponse coinmateReplaceByBuyLimit(
  227. String orderId,
  228. BigDecimal amount,
  229. BigDecimal price,
  230. String currencyPair,
  231. BigDecimal stopPrice,
  232. Integer hidden,
  233. Integer postOnly,
  234. Integer immediateOrCancel,
  235. Integer trailing)
  236. throws IOException {
  237. CoinmateReplaceResponse response =
  238. coinmateAuthenticated.replaceByBuyLimit(
  239. exchange.getExchangeSpecification().getApiKey(),
  240. exchange.getExchangeSpecification().getUserName(),
  241. signatureCreator,
  242. exchange.getNonceFactory(),
  243. amount,
  244. price,
  245. currencyPair,
  246. orderId,
  247. stopPrice,
  248. hidden,
  249. postOnly,
  250. immediateOrCancel,
  251. trailing);
  252. throwExceptionIfError(response);
  253. return response;
  254. }
  255. public CoinmateReplaceResponse coinmateReplaceBySellLimit(
  256. String orderId,
  257. BigDecimal amount,
  258. BigDecimal price,
  259. String currencyPair,
  260. BigDecimal stopPrice,
  261. Integer hidden,
  262. Integer postOnly,
  263. Integer immediateOrCancel,
  264. Integer trailing)
  265. throws IOException {
  266. CoinmateReplaceResponse response =
  267. coinmateAuthenticated.replaceBySellLimit(
  268. exchange.getExchangeSpecification().getApiKey(),
  269. exchange.getExchangeSpecification().getUserName(),
  270. signatureCreator,
  271. exchange.getNonceFactory(),
  272. amount,
  273. price,
  274. currencyPair,
  275. orderId,
  276. stopPrice,
  277. hidden,
  278. postOnly,
  279. immediateOrCancel,
  280. trailing);
  281. throwExceptionIfError(response);
  282. return response;
  283. }
  284. public CoinmateTradeResponse buyCoinmateInstant(BigDecimal total, String currencyPair)
  285. throws IOException {
  286. CoinmateTradeResponse response =
  287. coinmateAuthenticated.buyInstant(
  288. exchange.getExchangeSpecification().getApiKey(),
  289. exchange.getExchangeSpecification().getUserName(),
  290. signatureCreator,
  291. exchange.getNonceFactory(),
  292. total,
  293. currencyPair);
  294. throwExceptionIfError(response);
  295. return response;
  296. }
  297. public CoinmateTradeResponse sellCoinmateInstant(BigDecimal total, String currencyPair)
  298. throws IOException {
  299. CoinmateTradeResponse response =
  300. coinmateAuthenticated.sellInstant(
  301. exchange.getExchangeSpecification().getApiKey(),
  302. exchange.getExchangeSpecification().getUserName(),
  303. signatureCreator,
  304. exchange.getNonceFactory(),
  305. total,
  306. currencyPair);
  307. throwExceptionIfError(response);
  308. return response;
  309. }
  310. public CoinmateReplaceResponse coinmateReplaceByBuyInstant(
  311. String orderId, BigDecimal total, String currencyPair) throws IOException {
  312. CoinmateReplaceResponse response =
  313. coinmateAuthenticated.replaceByBuyInstant(
  314. exchange.getExchangeSpecification().getApiKey(),
  315. exchange.getExchangeSpecification().getUserName(),
  316. signatureCreator,
  317. exchange.getNonceFactory(),
  318. total,
  319. currencyPair,
  320. orderId);
  321. throwExceptionIfError(response);
  322. return response;
  323. }
  324. public CoinmateReplaceResponse coinmateReplaceBySellInstant(
  325. String orderId, BigDecimal total, String currencyPair) throws IOException {
  326. CoinmateReplaceResponse response =
  327. coinmateAuthenticated.replaceBySellInstant(
  328. exchange.getExchangeSpecification().getApiKey(),
  329. exchange.getExchangeSpecification().getUserName(),
  330. signatureCreator,
  331. exchange.getNonceFactory(),
  332. total,
  333. currencyPair,
  334. orderId);
  335. throwExceptionIfError(response);
  336. return response;
  337. }
  338. }