Chilkat Online Tools

Swift3 / Binance spot API / Time-Weighted Average Price New Order (TRADE)

Back to Collection Items

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

    let http = CkoHttp()!
    var success: Bool

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

    var resp: CkoHttpResponse? = http.quickRequest("POST", url: "https://domain.com/sapi/v1/algo/futures/newOrderTwap?symbol=&side=&quantity=&duration=×tamp={{timestamp}}&signature={{signature}}")
    if http.lastMethodSuccess == false {
        print("\(http.lastErrorText!)")
        return
    }

    print("\(resp!.statusCode.intValue)")
    print("\(resp!.bodyStr!)")
    resp = nil

}

Curl Command

curl -X POST
	-H "Content-Type: application/json"
	-H "X-MBX-APIKEY: {{binance-api-key}}"
https://domain.com/sapi/v1/algo/futures/newOrderTwap?symbol=&side=&quantity=&duration=&timestamp={{timestamp}}&signature={{signature}}

Postman Collection Item JSON

{
  "name": "Time-Weighted Average Price 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/newOrderTwap?symbol=&side=&quantity=&duration=&timestamp={{timestamp}}&signature={{signature}}",
      "host": [
        "{{url}}"
      ],
      "path": [
        "sapi",
        "v1",
        "algo",
        "futures",
        "newOrderTwap"
      ],
      "query": [
        {
          "key": "symbol",
          "value": "",
          "description": "Trading symbol eg. BTCUSDT"
        },
        {
          "key": "side",
          "value": "",
          "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": "duration",
          "value": "",
          "description": "Duration for TWAP orders in seconds. [300, 86400];Less than 5min => defaults to 5 min; Greater than 24h => defaults to 24h"
        },
        {
          "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 Twap new order. Only support on USDⓈ-M Contracts.\n\nWeight(UID): 3000"
  },
  "response": [
  ]
}