【2025-03-18 11:18:30.394】 [<COrderDetail object at 0x0000017765249530>, <COrderDetail object at 0x000001776524B520>, <COrderDetail object at 0x00000177652499C0>, <COrderDetail object at 0x000001776524B9B0>, <COrderDetail object at 0x0000017765248780>, <COrderDetail object at 0x000001774EF4E6A0>]
看起来是返回了一些object。你可以用loop来拆解。比如:
```
order_info = get_trade_detail_data(g.acct, g.acct_type, 'order')
for i in order_info:
# for name in dir(i):
# value = getattr(i, name)
# print(f'{name}: \t{value}')
```