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.
20 lines
721 B
20 lines
721 B
|
|
from huobi.client.account import AccountClient
|
|
from huobi.constant import *
|
|
from huobi.utils import *
|
|
import time
|
|
|
|
account_client = AccountClient(api_key=g_api_key,
|
|
secret_key=g_secret_key)
|
|
transfer_order_id = account_client.transfer_between_futures_and_pro(currency="trx", amount=200, transfer_type=TransferFuturesPro.TO_FUTURES)
|
|
LogInfo.output("transfer from pro to future Order Id : {id}".format(id=transfer_order_id))
|
|
|
|
# need wait a minute
|
|
time.sleep(2)
|
|
|
|
transfer_order_id = account_client.transfer_between_futures_and_pro(currency="trx", amount=200, transfer_type=TransferFuturesPro.TO_PRO)
|
|
LogInfo.output("transfer from future to pro Order Id : {id}".format(id=transfer_order_id))
|
|
|
|
|
|
|