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.
13 lines
402 B
13 lines
402 B
from huobi.client.margin import MarginClient
|
|
from huobi.constant import *
|
|
from huobi.utils import *
|
|
|
|
margin_client = MarginClient(api_key=g_api_key, secret_key=g_secret_key)
|
|
transfer_id = margin_client.post_cross_margin_transfer_in(currency="eos", amount=5)
|
|
LogInfo.output(transfer_id)
|
|
|
|
transfer_id = margin_client.post_cross_margin_transfer_out(currency="eos", amount=5)
|
|
LogInfo.output(transfer_id)
|
|
|
|
|