def request(self, **kwargs): channel = "/api/v1/order" return RestApiSyncClient(**kwargs).request_process(HttpMethod.POST_SIGN, channel, self.params)
def request(self, **kwargs): channel = "/api/v1/ticker" return RestApiSyncClient(**kwargs).request_process( HttpMethod.GET, channel, self.params)
def request(self, **kwargs): channel = "/api/v1/set_leverage" return RestApiSyncClient(**kwargs).request_process( HttpMethod.GET_SIGN, channel, self.params)
def request(self, **kwargs): channel = "/api/v1/condition_order_info" return RestApiSyncClient(**kwargs).request_process(HttpMethod.POST_SIGN, channel, self.params, self.page_params)
def request(self, **kwargs): channel = "/api/v1/liquidation_history" return RestApiSyncClient(**kwargs).request_process( HttpMethod.POST_SIGN, channel, self.params, self.page_params)
def request(self, **kwargs): channel = "/api/v1/account_records" return RestApiSyncClient(**kwargs).request_process(HttpMethod.GET_SIGN, channel, self.params)