Chilkat Online Tools

C# / Binance spot API / Volume Participation New Order (TRADE)

Back to Collection Items

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Chilkat.Http http = new Chilkat.Http();
bool success;

http.SetRequestHeader("Content-Type","application/json");
http.SetRequestHeader("X-MBX-APIKEY","{{binance-api-key}}");

Chilkat.HttpResponse resp = http.QuickRequest("POST","https://domain.com/sapi/v1/algo/futures/newOrderVp?symbol=&side=SELL&quantity=&urgency=LOW×tamp={{timestamp}}&signature={{signature}}");
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Debug.WriteLine(Convert.ToString(resp.StatusCode));
Debug.WriteLine(resp.BodyStr);

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&timestamp={{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&timestamp={{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": [
  ]
}