public override string OrderSellLimitEnd(string parameters) { string response = DoKeyRequest(parameters); CheckResponseAndThrow(response); PBuySell jdata = Newtonsoft.Json.JsonConvert.DeserializeObject <PBuySell>(response); return(""); }
public override string OrderSellLimitEnd(string parameters) { string response = DoKeyRequest(parameters); CheckResponseAndThrow(response); PBuySell jdata = null; try { jdata = Newtonsoft.Json.JsonConvert.DeserializeObject <PBuySell>(response); } catch (Exception ex) { throw new MarketAPIException("Parsing Response Error" + " >>>> " + ex.Message + " ## Response: ## " + response); } return(""); }