Use this workflow when the user wants to modify leverage, take-profit, or stop-loss on an existing position.
Reference command syntax in references/perps.md.
- Check open positions.
- Dry run the modification.
- Confirm with the user and modify.
If the user does not mention a token symbol, list open positions and confirm with the user:
mm perps positions--venue defaults to hyperliquid. It can be omitted.
mm perps positionsPreview the modification before executing:
mm perps modify --symbol BTC --leverage 10 --dry-run
mm perps modify --symbol ETH --tp 3000 --sl 2000 --dry-runAt least one of --leverage, --tp, or --sl must be provided.
Remove --dry-run only after explicit user confirmation:
mm perps modify --symbol BTC --leverage 10
mm perps modify --symbol ETH --tp 3000 --sl 2000Do not add --yes unless the user explicitly asked for unattended execution.