> ## Documentation Index
> Fetch the complete documentation index at: https://docs.4cx.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Place coins orders

> How your account mode determines whether orders are denominated in coins or cash.

# Place coins orders

There is no separate endpoint for coins orders. You use the same [Place order](/pages/orders/place-order), [Cancel order](/pages/orders/cancel-order), and [List my open orders](/pages/orders/list-open-orders) routes for every order on the platform. **The denomination is determined entirely by your account's current player mode.**

<Note>
  * When your account is in **coins** mode, every order you place will be denominated in **coins**.
  * When your account is in **cash** mode, every order you place will be denominated in **cash**.
</Note>

There is no per-request flag that overrides this — the mode is a single per-account setting. To trade in the other currency, switch the mode **before** placing the order.

## How to switch

Call [Switch player mode](/pages/coins-only/switch-player-mode) with `{ "playerMode": "coins" }` or `{ "playerMode": "cash" }`.

You can confirm the current mode at any time by inspecting `data.user.playerMode` from the [Log in](/pages/authentication/log-in) response, or via `/user/getMe`.

## Then place your order

Once your mode is set, follow the standard order flow:

* [Place order](/pages/orders/place-order) — post a resting offer, or take resting liquidity by setting `orderType` to anything other than `"post"`.
* [Cancel order](/pages/orders/cancel-order) — cancel a single open order.
* [List my open orders](/pages/orders/list-open-orders) — your unmatched resting offers.

Switching modes does **not** auto-cancel orders that are already resting in the previous mode; only newly placed orders are affected.
