docs: daily sync Polymarket docs 2026-06-16 - 118 files updated

This commit is contained in:
Etherdrake
2026-06-16 14:13:28 +02:00
parent 46bcbfdd05
commit 72269f5586
122 changed files with 307 additions and 21200 deletions
+13 -8
View File
@@ -61,7 +61,12 @@ Post-only orders will only rest on the book. If a post-only order would match im
</Step>
<Step title="Match or Rest">
**If the order is marketable** (your buy price ≥ lowest ask, or your sell price ≤ highest bid), it matches immediately against resting orders.
**If the order is marketable** (your buy price ≥ lowest ask, or your sell price ≤ highest bid), it matches against resting orders. Some markets apply a short taker delay before matching:
* **Taker delay:** used on selected crypto and finance up/down markets. The order is held for 250 ms, then validation runs again and the order is matched or placed on the book. The API waits for this hold and returns the final order result. To check a specific market, call the public CLOB endpoint `GET https://clob.polymarket.com/clob-markets/{condition_id}` or SDK method `getClobMarketInfo(conditionID)` and look for `itode: true`.
* **Sports/game delay:** enabled on configured sports markets around live game conditions. The order waits for the market's configured delay window before matching.
During either delay, the order is pending and cannot be canceled. If the market, balance, allowance, or risk checks fail when the delay expires, the order is rejected instead of matching.
**If the order is not marketable**, it rests on the book waiting for a counterparty. It remains open until:
@@ -89,12 +94,12 @@ Post-only orders will only rest on the book. If a post-only order would match im
When you place an order, it receives one of these statuses:
| Status | Description |
| ----------- | --------------------------------------------------------------------------- |
| `live` | Order is resting on the book |
| `matched` | Order matched immediately |
| `delayed` | Marketable order subject to a 1-second matching delay (sports markets) |
| `unmatched` | Marketable order placed on the book after the delay expired without a match |
| Status | Description |
| ----------- | ----------------------------------------------------------------------------------------------------------------------- |
| `live` | Order is resting on the book |
| `matched` | Order matched immediately |
| `delayed` | Marketable order accepted into an asynchronous delay window on configured seconds-delay markets, such as sports markets |
| `unmatched` | Marketable order placed on the book after the delay expired without a match |
## Trade Statuses
@@ -119,7 +124,7 @@ Price improvement always benefits the taker. If you place a buy order at `$0.55`
## Cancellation
You can cancel orders at any time before they're matched via the CLOB API.
You can cancel orders at any time before they're matched via the CLOB API, except while a marketable order is in a pending delay window.
Partial fills cannot be cancelled—only the unfilled portion of an order can be cancelled.