幣安合約為API用戶推出了時間加權平均價格算法API(TWAP)接口。用戶可以使用該接口交易U本位合約。
TWAP算法交易是幣安合約算法交易戰略的一部分,旨在為用戶提供一整套算法交易解決方案,通過智能算法,拆分大單,最小化對市場的影響。
時間加權平均價格算法 (以下簡稱TWAP)是一種算法交易執行策略,目標是達到一個平均執行價格,這個價格接近用戶指定期間的時間加權平均價格。TWAP 策略通常用來將大額訂單對市場的影響最小化,將大額訂單分散成較小的數量,並且以固定的時間間隔執行。
TWAP算法通過在指定時間內把訂單拆分,來優化訂單的平均成交價格。交易者通過部署TWAP策略來下大單,從而減小對市場的影響。
在以下場景中,TWAP能夠提供更好的執行價格:
了解更多TWAP算法設置,請參閱FAQ。
新TWAP 訂單接口:
POST sapi/v1/algo/futures/newOrderTwap
自定義執行參數
參數 | 描述 |
時長 | Duration for TWAP orders in seconds. [300, 86400] less than 5min => defaults to 5 min greater than 24h => defaults to 24h |
數量 | Trading quantity (must be more than the equivalent of 1,000 USDT and less than the equivalent of 1,000,000 USDT) |
限價 | Order’s limit price if unspecified, the order will be placed at market price by default |
其他補充接口
接口 | 描述 | 文檔 |
DELETE sapi/v1/algo/futures/order | 取消活躍訂單 | https://binance-docs.github.io/apidocs/spot/en/#cancel-algo-order-trade |
GET sapi/v1/algo/futures/openOrders | 獲取running orders | https://binance-docs.github.io/apidocs/spot/en/#query-current-algo-open-orders-user_data |
GET sapi/v1/algo/futures/historicalOrders | 獲取歷史訂單 | https://binance-docs.github.io/apidocs/spot/en/#query-historical-algo-orders-user_data |
GET sapi/v1/algo/futures/subOrders | 使用算法訂單ID來查詢指定的子訂單 | https://binance-docs.github.io/apidocs/spot/en/#query-sub-orders-user_data |
交易詳情會在訂單成交後展示,只有成交的訂單會展示數量、平均成交價格和交易手續費。
用戶可能收到如下報錯信息:
錯誤代碼 | 報錯信息 |
0 | OK |
-1000 | An unknown error occurred while processing the request. |
-1102 | A mandatory parameter was not sent, empty/null, or malformed. |
-20121 | Invalid symbol. |
-20130 | Invalid data sent for a parameter. |
-2013 | Order does not exist. |
-5007 | Quantity must be greater than zero. |
-20124 | Invalid algo id or it has been completed. |
-20132 | The client algo id is duplicated. |
-20194 | Duration is too short to execute all required quantity. |
-20195 | The total size is too small. |
-20196 | The total size is too large. |
-20198 | Reach the max open orders allowed. |
TWAP 訂單不保證執行。訂單將盡可能成交,但執行狀況取決於市場流動性和波動性。
如果在執行過程中,市場價格移動過大,或者是流動性不足,算法訂單不一定能完全執行。
所以,執行將始終依據市場流動性。
幣安部署了多樣的風險緩和策略,包括手動和自動的熔斷機制。這些功能會在市場崩潰或者是系統出錯時被激活,並會取消所有的未被執行的TWAP訂單。
查看TWAP訂單狀態,可以查詢:(GET sapi/v1/algo/futures/openOrders or GET sapi/v1/algo/futures/historicalOrders).
請注意:websocket不支持成交信息推送。此外,收到"success": true不代表訂單會一定被執行。
舉例:用戶的合約餘額不足,或者帳戶是只減倉狀態,用戶也會收到"success": true,但是訂單並不能被執行。