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

# Promote Strategy

> Promote strategy to the next deployment phase. Gates must pass.



## OpenAPI

````yaml /api/openapi.json post /api/graph/v1/strategies/{strategy_id}/promote
openapi: 3.1.0
info:
  title: Sequency Graph API
  description: >

    # Sequency Graph-Native Trading API


    Graph-native API for trading intelligence, built on FalkorDB.


    ## Features


    - **Screener**: Filter stocks using graph-native queries with relationship
    expansion

    - **Stock Detail**: Complete stock context with all relationships

    - **Confluence Scoring**: Setup quality assessment with weighted components

    - **Strategy Matching**: Find matching options strategies via graph
    traversal

    - **Market Context**: Current market-wide context for trading decisions


    ## Data Sources


    All data is sourced from the FalkorDB knowledge graph, populated by:

    - Pattern detector (Go) - Technical indicators, patterns

    - Graph sync service - Levels, volume profiles, news, day classification
  version: 1.0.0
servers: []
security: []
paths:
  /api/graph/v1/strategies/{strategy_id}/promote:
    post:
      tags:
        - strategies
      summary: Promote Strategy
      description: Promote strategy to the next deployment phase. Gates must pass.
      operationId: promote_strategy_api_graph_v1_strategies__strategy_id__promote_post
      parameters:
        - name: strategy_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Strategy Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StrategyResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    StrategyResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        user_id:
          type: string
          format: uuid
          title: User Id
        name:
          type: string
          title: Name
        archetype:
          anyOf:
            - type: string
            - type: 'null'
          title: Archetype
        instrument:
          $ref: '#/components/schemas/Instrument'
        timeframe:
          $ref: '#/components/schemas/app__models__strategy__Timeframe'
        automation_level:
          $ref: '#/components/schemas/AutomationLevel'
        universe:
          additionalProperties: true
          type: object
          title: Universe
        strategy_kind:
          type: string
          title: Strategy Kind
          default: rule_driven
        rules:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Rules
        cross_sectional_spec:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Cross Sectional Spec
        risk_controls:
          additionalProperties: true
          type: object
          title: Risk Controls
        canvas_layout:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Canvas Layout
        contract_selection:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Contract Selection
        deployment_phase:
          $ref: '#/components/schemas/DeploymentPhase'
        deployment_ramp_pct:
          type: integer
          title: Deployment Ramp Pct
        version:
          type: integer
          title: Version
        is_active:
          type: boolean
          title: Is Active
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        forked_from_run_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Forked From Run Id
        derived_from_strategy_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Derived From Strategy Id
        last_verdict:
          anyOf:
            - type: string
              enum:
                - shown_promise_for_regime
                - not_yet
                - rejected
            - type: 'null'
          title: Last Verdict
      type: object
      required:
        - id
        - user_id
        - name
        - instrument
        - timeframe
        - automation_level
        - universe
        - risk_controls
        - deployment_phase
        - deployment_ramp_pct
        - version
        - is_active
        - created_at
        - updated_at
      title: StrategyResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Instrument:
      type: string
      enum:
        - stocks
        - options
        - both
      title: Instrument
    app__models__strategy__Timeframe:
      type: string
      enum:
        - scalping
        - intraday
        - swing
      title: Timeframe
    AutomationLevel:
      type: string
      enum:
        - monitor
        - supervised
        - autonomous
      title: AutomationLevel
    DeploymentPhase:
      type: string
      enum:
        - backtest
        - paper
        - shadow
        - live
      title: DeploymentPhase
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````