SQL Server / Binance spot API / Volume Participation New Order (TRADE)
Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'X-MBX-APIKEY', '{{binance-api-key}}'
DECLARE @resp int
EXEC sp_OAMethod @http, 'QuickRequest', @resp OUT, 'POST', 'https://domain.com/sapi/v1/algo/futures/newOrderVp?symbol=&side=SELL&quantity=&urgency=LOW×tamp={{timestamp}}&signature={{signature}}'
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
END
GO
Curl Command
curl -X POST
-H "Content-Type: application/json"
-H "X-MBX-APIKEY: {{binance-api-key}}"
https://domain.com/sapi/v1/algo/futures/newOrderVp?symbol=&side=SELL&quantity=&urgency=LOW×tamp={{timestamp}}&signature={{signature}}
Postman Collection Item JSON
{
"name": "Volume Participation New Order (TRADE)",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
},
{
"key": "X-MBX-APIKEY",
"value": "{{binance-api-key}}",
"type": "text"
}
],
"url": {
"raw": "{{url}}/sapi/v1/algo/futures/newOrderVp?symbol=&side=SELL&quantity=&urgency=LOW×tamp={{timestamp}}&signature={{signature}}",
"host": [
"{{url}}"
],
"path": [
"sapi",
"v1",
"algo",
"futures",
"newOrderVp"
],
"query": [
{
"key": "symbol",
"value": "",
"description": "Trading symbol eg. BTCUSDT"
},
{
"key": "side",
"value": "SELL",
"description": "Trading side ( BUY or SELL )"
},
{
"key": "positionSide",
"value": "",
"description": "Default BOTH for One-way Mode ; LONG or SHORT for Hedge Mode. It must be sent in Hedge Mode.",
"disabled": true
},
{
"key": "quantity",
"value": "",
"description": "Quantity of base asset; The notional (quantity * mark price(base asset)) must be more than the equivalent of 10,000 USDT and less than the equivalent of 1,000,000 USDT."
},
{
"key": "urgency",
"value": "LOW",
"description": "Represent the relative speed of the current execution; ENUM: LOW, MEDIUM, HIGH."
},
{
"key": "clientAlgoId",
"value": "",
"description": "A unique id among Algo orders (length should be 32 characters), If it is not sent, we will give default value.",
"disabled": true
},
{
"key": "reduceOnly",
"value": "",
"description": "\"true\" or \"false\". Default \"false\"; Cannot be sent in Hedge Mode; Cannot be sent when you open a position.",
"disabled": true
},
{
"key": "limitPrice",
"value": "",
"description": "Limit price of the order; If it is not sent, will place order by market price by default.",
"disabled": true
},
{
"key": "recvWindow",
"value": "5000",
"description": "The value cannot be greater than 60000",
"disabled": true
},
{
"key": "timestamp",
"value": "{{timestamp}}",
"description": "UTC timestamp in ms"
},
{
"key": "signature",
"value": "{{signature}}",
"description": "Signature"
}
]
},
"description": "Send in a VP new order. Only support on USDⓈ-M Contracts.\n\nWeight(IP): 3000\n\n- Max open orders allowed: 10 orders.\n- Leverage of symbols and position mode will be the same as your futures account settings. You can set up through the trading page or fapi.\n- Receiving \"success\": true does not mean that your order will be executed. Please use the query order endpoints(GET sapi/v1/algo/futures/openOrders or GET sapi/v1/algo/futures/historicalOrders) to check the order status. For example: Your futures balance is insufficient, or open position with reduce only or position side is inconsistent with your own setting. In these cases you will receive \"success\": true, but the order status will be expired after we check it."
},
"response": [
]
}