diff --git a/src/Api/Futures/Trade.php b/src/Api/Futures/Trade.php index 9d69d95..0d968ce 100644 --- a/src/Api/Futures/Trade.php +++ b/src/Api/Futures/Trade.php @@ -55,6 +55,16 @@ public function postOrder(array $data = [], string $version = Version::V1) $this->data = array_merge($this->data, $data); return $this->exec(); } + /* + *POST /fapi/v1/order/test (HMAC SHA256) + */ + public function postTestOrder(array $data = [], string $version = Version::V1) + { + $this->type = 'POST'; + $this->path = '/fapi/' . $version . '/order/test'; + $this->data = array_merge($this->data, $data); + return $this->exec(); + } /* *POST /fapi/v1/batchOrders (HMAC SHA256)