← cd ../strategies
liverisk: low

brackets

Entry plus a linked OCO take-profit / stop-loss, in one grouped action.

commands

deliverator buy SOL --notional 250 --tp 180 --sl 140

deliverator sell SOL --notional 250 --tp 120 --sl 160

A bracket is an entry with a linked OCO (one-cancels-other) take-profit and stop-loss. Hit the TP and the SL auto-cancels; hit the SL and the TP auto-cancels. Your risk is defined at the moment you enter — no naked position waiting for you to babysit it.

One action, correctly grouped

--tp and --sl on buy/sell place the entry and both exits as a single grouped normalTpsl action. Deliverator rounds the trigger prices, links the legs, and attaches the builder fee. For an agent, this is the safest default: every position carries its own exit plan from birth.

deliverator buy SOL --notional 250 --tp 180 --sl 140 --json

You can also place standalone conditional orders with --trigger/--trigger-type tp|sl when you want an exit on an existing position.

HUMAN MACHINE