/**
* @see BTCChinaGetStopOrderRequest
*/
public BTCChinaGetStopOrderResponse getStopOrder(int id, String market) throws IOException {
BTCChinaGetStopOrderRequest request = new BTCChinaGetStopOrderRequest(id, market);
BTCChinaGetStopOrderResponse response = btcChina.getStopOrder(signatureCreator, tonce, request);
return checkResult(response);
}