Untitled
unknown
plain_text
10 months ago
373 B
24
Indexable
def lbank_trading_volume(uid: str, days: int):
start_time, end_time = get_lbank_time_range(days)
print(f"Start: {start_time}, End: {end_time}")
response = lbank_request("GET", "/affiliate-api/v2/trade/future", {"openId": uid, "userType": "ALL", "startTime": start_time, "endTime": end_time})
print(response)
lbank_trading_volume('LBA9G87795', 5)
Editor is loading...
Leave a Comment