> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aegisintent.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Register DCA Schedule

> Register a recurring dollar-cost averaging schedule with a fixed number of orders. The Wealth Sentinel executes each leg automatically at the specified interval and marks the schedule as COMPLETED once all orders are fulfilled.

Register a recurring dollar cost averaging schedule. The Wealth Sentinel automatically executes each leg at the specified interval using the agent's Circle Developer Controlled Wallet.


## OpenAPI

````yaml POST /v1/actions/wealth/dca
openapi: 3.1.0
info:
  title: Aegis Secure API
  description: >-
    Zero-trust API for Developer-Controlled Wallets (DCW) and programmatic
    Policy Engine controls.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.aegisintent.xyz
    description: Production API Server
security: []
paths:
  /v1/actions/wealth/dca:
    post:
      tags:
        - Actions API
        - Wealth Engine
      summary: Register DCA Schedule
      description: >-
        Register a recurring dollar-cost averaging schedule with a fixed number
        of orders. The Wealth Sentinel executes each leg automatically at the
        specified interval and marks the schedule as COMPLETED once all orders
        are fulfilled.
      parameters:
        - name: X-Aegis-Email
          in: header
          required: true
          schema:
            type: string
          description: Agent email address
        - name: Idempotency-Key
          in: header
          required: true
          schema:
            type: string
          description: Unique UUID for financial idempotency
        - name: X-Aegis-Nonce
          in: header
          required: true
          schema:
            type: integer
          description: Current agent nonce
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - tokenIn
                - tokenOut
                - amountInPerTx
                - frequencyHours
                - totalOrders
              properties:
                tokenIn:
                  type: string
                  example: USDC
                tokenOut:
                  type: string
                  example: cirBTC
                amountInPerTx:
                  type: string
                  example: '25.00'
                frequencyHours:
                  type: integer
                  example: 24
                totalOrders:
                  type: integer
                  minimum: 1
                  example: 30
                  description: >-
                    Total number of recurring orders to execute before the
                    schedule auto-completes
      responses:
        '200':
          description: DCA schedule registered successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  scheduleId:
                    type: string
      security:
        - BearerAuth: []
        - AegisEmail: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Provide raw API session token issued by `/v1/connect/complete`
    AegisEmail:
      type: apiKey
      in: header
      name: X-Aegis-Email
      description: Dual-header token holder identity confirmation

````