def request(self, **kwargs):
        channel = "/api/v1/order"

        return RestApiSyncClient(**kwargs).request_process(HttpMethod.POST_SIGN, channel, self.params)
示例#2
0
    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)
示例#5
0
    def request(self, **kwargs):
        channel = "/api/v1/liquidation_history"

        return RestApiSyncClient(**kwargs).request_process(
            HttpMethod.POST_SIGN, channel, self.params, self.page_params)
示例#6
0
    def request(self, **kwargs):
        channel = "/api/v1/account_records"

        return RestApiSyncClient(**kwargs).request_process(HttpMethod.GET_SIGN, channel, self.params)