MINARA

Create a managed strategy (two-step confirm)

POST /v1/autopilot/managed/strategies — Create a managed strategy on a sub-wallet. Fund-moving: omit `confirm` (or pass false) to get `{ confirmed: false, previ

POST /v1/autopilot/managed/strategies

Create a managed strategy on a sub-wallet. Fund-moving: omit confirm (or pass false) to get { confirmed: false, preview }; pass confirm: true with the same idempotencyKey to actually create. 409 when the sub-wallet already has a strategy or a create is already in flight. The strategy starts DISABLED — enabling autonomous trading is a separate manual step routed through chat.

MethodPOST
Path/v1/autopilot/managed/strategies
AuthAuthorization: Bearer <token> required when GATEWAY_AUTH_TOKEN is set
Categoryautopilot

Request body

{ "subAccountId": "sub_…", "strategyType": "sharpe-guard", "symbols": ["BTC"], "strategyConfig": {}, "confirm": false, "idempotencyKey": "<uuid-v4>" }

Response body

{ "confirmed": false, "preview": { "subAccountId": "sub_…", "strategyType": "sharpe-guard", "symbols": ["BTC"], "warning": "…" } }

On this page