Skip to Content

longbridge order

View your orders and trade executions, or submit buy/sell orders directly from the terminal.

Basic Usage

bash
longbridge order
| Order ID           | Symbol  | Side | Order Type | Status        | Qty | Price  | Exec Qty | Exec Price | Created At          |
|--------------------|---------|------|------------|---------------|-----|--------|----------|------------|---------------------|
| 701276261045858304 | TSLA.US | Buy  | LO         | Filled        | 10  | 340.00 | 10       | 339.85     | 2026-04-10 09:32:14 |
| 701276261045858305 | NVDA.US | Sell | LO         | PartialFilled | 20  | 185.00 | 12       | 185.00     | 2026-04-10 09:45:01 |
| 701276261045858306 | AAPL.US | Buy  | MO         | New           | 5   | -      | 0        | -          | 2026-04-10 10:01:33 |

Examples

Only orders in cancellable states (New, PartialFilled, etc.) are accepted. Use -y to skip the confirmation prompt in scripts.

Modify an open order

bash
# Adjust quantity or price on a pending order
longbridge order replace 701276261045858304 --qty 5 --price 350.00

--qty is required. Omit --price to keep the current limit price. Use -y to skip the confirmation prompt in scripts.

Options

OptionDescriptionDefault
--actionFilter by side: buy | sell (US accounts)
--attachedShow attached child order in order detail (US accounts)false

Requirements

OAuth trade permission is required to place, cancel, or replace orders. See the trade permission setup guide to enable trading access.

Notes

buy and sell always prompt for confirmation before submitting. Use -y with cancel and replace to skip confirmation in scripting contexts.