You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from huobi.client.margin import MarginClient
|
|
from huobi.constant import *
|
|
|
|
|
|
margin_client = MarginClient(api_key=g_api_key, secret_key=g_secret_key)
|
|
account_balance = margin_client.get_cross_margin_account_balance()
|
|
account_balance.print_object()
|
|
|
|
|