algo
Installation
SKILL.md
Binance Algo Skill
Algo request on Binance using authenticated API endpoints. Requires API key and secret key for certain endpoints. Return the result in JSON format.
Quick Reference
| Endpoint | Description | Required | Optional | Authentication |
|---|---|---|---|---|
/sapi/v1/algo/futures/order (DELETE) |
Cancel Algo Order(TRADE) | algoId | recvWindow | Yes |
/sapi/v1/algo/futures/openOrders (GET) |
Query Current Algo Open Orders(USER_DATA) | None | recvWindow | Yes |
/sapi/v1/algo/futures/historicalOrders (GET) |
Query Historical Algo Orders(USER_DATA) | None | symbol, side, startTime, endTime, page, pageSize, recvWindow | Yes |
/sapi/v1/algo/futures/subOrders (GET) |
Query Sub Orders(USER_DATA) | algoId | page, pageSize, recvWindow | Yes |
/sapi/v1/algo/futures/newOrderTwap (POST) |
Time-Weighted Average Price(Twap) New Order(TRADE) | symbol, side, quantity, duration | positionSide, clientAlgoId, reduceOnly, limitPrice, recvWindow | Yes |
/sapi/v1/algo/futures/newOrderVp (POST) |
Volume Participation(VP) New Order (TRADE) | symbol, side, quantity, urgency | positionSide, clientAlgoId, reduceOnly, limitPrice, recvWindow | Yes |
/sapi/v1/algo/spot/order (DELETE) |
Cancel Algo Order(TRADE) | algoId | recvWindow | Yes |
/sapi/v1/algo/spot/openOrders (GET) |
Query Current Algo Open Orders(USER_DATA) | None | recvWindow | Yes |
/sapi/v1/algo/spot/historicalOrders (GET) |
Query Historical Algo Orders(USER_DATA) | None | symbol, side, startTime, endTime, page, pageSize, recvWindow | Yes |
/sapi/v1/algo/spot/subOrders (GET) |
Query Sub Orders(USER_DATA) | algoId | page, pageSize, recvWindow | Yes |
/sapi/v1/algo/spot/newOrderTwap (POST) |
Time-Weighted Average Price(Twap) New Order(TRADE) | symbol, side, quantity, duration | clientAlgoId, limitPrice | Yes |
Related skills