From 387c3327df74c1dc21463d9c8afe7f19c339da63 Mon Sep 17 00:00:00 2001 From: Chris Khan Date: Thu, 19 Sep 2024 17:45:42 +0000 Subject: [PATCH] GITBOOK-66: Added notes to order types --- learn/order-types.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/learn/order-types.md b/learn/order-types.md index 447946f..1bd2aad 100644 --- a/learn/order-types.md +++ b/learn/order-types.md @@ -16,3 +16,8 @@ The following list describes the supported order types on Injective: * **SELL\_PO (8):** Post-Only Sell. Similar to BUY\_PO, this ensures that your sell order will only add liquidity to the order book and not match with a pre-existing order. * **BUY\_ATOMIC (9):** An atomic buy order is a market order that gets executed instantly, bypassing the Frequent Batch Auctions (FBA). It's intended for smart contracts that need to execute a trade instantly. A higher fee is paid defined in the global exchange parameters (currently it is two times the normal trading fee). * **SELL\_ATOMIC (10):** An atomic sell order is similar to a BUY\_ATOMIC, and it gets executed instantly at the current market price, bypassing the FBA. + +Additional notes: + +* **Immediate-Or-Cancel (IOC):** IOC orders are not yet supported. The closest order type is a market order (**BUY**). +* The worst price for a market order is the "price" parameter.