Skip to main content
Portfolio commands expose user-owned portfolio memory to agents and operators. All reads are scoped to the authenticated user. The CLI redacts secrets and omits large handoff notes unless you ask for them.

Start here

Use status for current state, history for recent ticks and trades, and last for the latest full portfolio-manager run.

Read current state

status returns current portfolio state plus selected risk settings.
Update one config value:

Read portfolio memory

history returns two lists:
  • ticks: portfolio-manager evaluation runs
  • trades: user-scoped portfolio trade records
List mode omits full handoff notes by default. Include them only when an agent needs the full run memory:

Read one tick or trade

Use last when an agent wants the latest portfolio-manager handoff. Use tick <id> or trade <id> when the agent already has an id from history.

Views

Views are your current market convictions. They are not public theses; they are instructions and context for the portfolio manager.
Useful fields:

Strategies

Strategies are persistent instructions for how the portfolio manager should behave.
Use views for what you believe. Use strategies for how the manager should act.

Run or trigger analysis

Run one local portfolio tick:
Run continuously:
Trigger the cloud portfolio manager:
--dry-run is the default for local watch. --live opts into actual order placement and requires trading credentials.

Enable cloud manager

enable uploads encrypted exchange credentials, configures a schedule, and stores portfolio-manager settings. disable stops the cloud manager but keeps credentials. revoke stops the manager and deletes cloud credentials.

JSON output

Agents should pass --json whenever available. The portfolio JSON envelope usually includes:
Do not scrape human terminal output. Use --json and parse the envelope.

Next

Portfolio API

REST endpoints behind portfolio state, ticks, trades, views, strategies, and trigger.

Portfolio Autopilot

How views, strategies, risk gates, ticks, and handoffs fit together.