Administrator
2025-05-26 b51b2ae184fad5aaf37a78903987e064f192d430
1
2
3
4
5
6
7
8
9
10
11
12
13
class TradeRequest:
    def __init__(self, type_, data, request_id):
        self.type_ = type_
        self.data = data
        self.request_id = request_id
 
 
class TradeResponse:
    def OnTradeResponse(self, data_json):
        pass
 
    def OnTradeCallback(self, data_json):
        pass