Administrator
2025-06-17 8c0571ca45921370f7ccff6d1192190d41080a25
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