DELETE

/api/v1/smart_trades/:id

Izin: SMART_TRADES_WRITEKeamanan: SIGNED

Membatalkan SmartTrade yang sedang aktif secara langsung menggunakan ID uniknya. Seluruh pesanan limit terbuka di bursa akan langsung dibatalkan.

Parameter Jalur

idinteger required

ID unik Quentrade untuk entitas SmartTrade ini.

Contoh Permintaan

DELETE/api/v1/smart_trades/:id

Parameter Respons

Jika berhasil, respons akan menyertakan salinan entitas SmartTrade yang telah diperbarui dengan detail pembatalan. SmartTrade Entity

Contoh Respons

Mengembalikan HTTP 200 OK jika berhasil, 400 Bad Request jika perdagangan tidak dapat dibatalkan pada status saat ini, 401 Unauthorized jika otentikasi gagal, atau 404 Not Found jika ID SmartTrade tidak ditemukan.

cancel_smart_trade_200.json
200 OK
{
  "id": 30404547,
  "version": 2,
  "account": {
    "id": 32402783,
    "type": "binance_us",
    "name": "My Binance US",
    "market": "Binance US Spot",
    "link": "/accounts/32402783"
  },
  "pair": "USDT_DOGE",
  "instant": false,
  "status": {
    "type": "cancellation_pending",
    "basic_type": "cancellation_pending",
    "title": "Cancelling"
  },
  "leverage": {
    "enabled": false
  },
  "position": {
    "type": "buy",
    "editable": false,
    "units": {
      "value": "14.91",
      "editable": false
    },
    "price": {
      "value": "0.10622",
      "value_without_commission": "0.10559",
      "editable": false
    },
    "total": {
      "value": "1.58385"
    },
    "order_type": "market",
    "status": {
      "type": "finished",
      "basic_type": "finished",
      "title": "Finished"
    }
  },
  "take_profit": {
    "enabled": true,
    "price_type": "value",
    "steps": [
      {
        "id": 1006090636,
        "order_type": "limit",
        "editable": true,
        "units": {
          "value": "14.0"
        },
        "price": {
          "type": "last",
          "value": "0.11627",
          "percent": null
        },
        "volume": "100.0",
        "total": "1.62778",
        "trailing": {
          "enabled": false,
          "percent": null
        },
        "status": {
          "type": "order_placed",
          "basic_type": "order_placed",
          "title": "Placed"
        },
        "data": {
          "cancelable": true,
          "panic_sell_available": true
        },
        "position": 1
      }
    ]
  },
  "stop_loss": {
    "enabled": false
  },
  "reduce_funds": {
    "steps": []
  },
  "market_close": {},
  "note": "",
  "note_raw": null,
  "skip_enter_step": false,
  "data": {
    "editable": false,
    "current_price": {
      "bid": "0.10613",
      "ask": "0.10637",
      "last": "0.10636",
      "quote_volume": "181260.82083",
      "day_change_percent": "0.806"
    },
    "target_price_type": "price",
    "orderbook_price_currency": "USDT",
    "base_order_finished": true,
    "missing_funds_to_close": "0.0",
    "liquidation_price": null,
    "average_enter_price": "0.10622",
    "average_close_price": null,
    "average_enter_price_without_commission": "0.10559",
    "average_close_price_without_commission": null,
    "panic_sell_available": false,
    "add_funds_available": false,
    "reduce_funds_available": false,
    "force_start_available": false,
    "force_process_available": true,
    "cancel_available": false,
    "finished": false,
    "base_position_step_finished": true,
    "entered_amount": "14.91",
    "entered_total": "1.58385",
    "closed_amount": "0.0",
    "closed_total": "0.0",
    "commission": 0.001,
    "created_at": "2024-08-12T14:35:21.632Z",
    "updated_at": "2024-08-12T14:47:43.054Z",
    "type": "smart_trade"
  },
  "profit": {
    "volume": "-0.0030340983",
    "usd": "-0.0030340983",
    "percent": "-0.19",
    "roe": null
  },
  "margin": {
    "amount": null,
    "total": null
  },
  "is_position_not_filled": false
}