-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
placeOrder 示例错误代码:Invalid order source spot api #33
Comments
接口为:api.huobi.de.com 下单 参数 Source 不管写什么都返回错误代码: |
@wx85278161 按您的下单参数设置了,并没有重现出问题。您的account-id用的是现货账户的account-id吗? |
是现货账号的, 现在的错误提示是余额不够,但使用接口查到有余额的: 返回==》:{"status":"error","err-code":"account-frozen-balance-insufficient-error","err-msg":"trade account balance is not enough, left: 0","data":null} postResp:{"status":"error","err-code":"account-frozen-balance-insufficient-error","err-msg":"trade account balance is not enough 使用账号查Balancec: 示例代码:\huobirdcenter\[email protected]\cmd\accountclientexample\accountclientexample.go |
谢谢 已经在github回复了
…---原始邮件---
发件人: "Eyn"<[email protected]>
发送时间: 2021年2月24日(周三) 中午12:20
收件人: "HuobiRDCenter/huobi_Golang"<[email protected]>;
抄送: "wx85278161"<[email protected]>;"Mention"<[email protected]>;
主题: Re: [HuobiRDCenter/huobi_Golang] placeOrder 示例错误代码:Invalid order source spot api (#33)
@wx85278161 按您的下单参数设置了,并没有重现出问题。您的account-id用的是现货账户的account-id吗?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
根据日志,你的账户里有76.335877USDT,但是你下单时想卖10BTC,所以余额不够。 你想进行什么样的交易呢? |
交易0.0001的的成本不到10usd,参数设为0.0001 或者0.0002也是返回 余额不够 |
交易量设为0.0001 也提示余额不够
…---原始邮件---
发件人: "Eyn"<[email protected]>
发送时间: 2021年2月24日(周三) 下午3:44
收件人: "HuobiRDCenter/huobi_Golang"<[email protected]>;
抄送: "wx85278161"<[email protected]>;"Mention"<[email protected]>;
主题: Re: [HuobiRDCenter/huobi_Golang] placeOrder 示例错误代码:Invalid order source spot api (#33)
@wx85278161 按您的下单参数设置了,并没有重现出问题。您的account-id用的是现货账户的account-id吗?
是现货账号的, 现在的错误提示是余额不够,但使用接口查到有余额的:
{POST https://api.huobi.de.com/v1/order/orders/place?AccessKeyId=XXXX&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2021-02-24T06%3A39%3A19&Signature=XXXX
返回==》:{"status":"error","err-code":"account-frozen-balance-insufficient-error","err-msg":"trade account balance is not enough, left: 0","data":null}
postResp:{"status":"error","err-code":"account-frozen-balance-insufficient-error","err-msg":"trade account balance is not enough
使用账号查Balancec:
&{GET https://api.huobi.de.com/v1/account/accounts/19253692/balance?AccessKeyId=XXXXX&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2021-02-24T06%3A50%3A10&Signature=XXXX
返回:=》Account balance: {Currency:usdt Type:trade Balance:76.335877}Account balance: {Currency:usdt Type:frozen Balance:0}
示例代码:\huobirdcenter\[email protected]\cmd\accountclientexample\accountclientexample.go
根据日志,你的账户里有76.335877USDT,但是你下单时想卖10BTC,所以余额不够。
你想进行什么样的交易呢?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
@wx85278161 你的完整的交易参数是什么?按照你最开始写的参数,你是卖BTC。你现在没有BTC,所以余额不够。 |
@eynzhang |
placeOrder 示例错误代码:Invalid order source spot api
代码:
func placeOrder() {
client := new(client.OrderClient).Init(config.AccessKey, config.SecretKey, config.Host)
request := order.PlaceOrderRequest{
AccountId: config.AccountId,
Type: "sell-market",
Symbol: "btcusdt",
Amount: "10",
Source: "spot-api",
}
}
The text was updated successfully, but these errors were encountered: