> ## 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.

# Get Signal Gate Status

> Quick pass/fail gate summary for signal-level acceptance.



## OpenAPI

````yaml /api/openapi.json get /api/internal/acceptance/signals/gate-status
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/internal/acceptance/signals/gate-status:
    get:
      tags:
        - acceptance-signals
      summary: Get Signal Gate Status
      description: Quick pass/fail gate summary for signal-level acceptance.
      operationId: get_signal_gate_status_api_internal_acceptance_signals_gate_status_get
      parameters:
        - name: start_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date
              - type: 'null'
            description: Start date (YYYY-MM-DD)
            title: Start Date
          description: Start date (YYYY-MM-DD)
        - name: end_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date
              - type: 'null'
            description: End date (YYYY-MM-DD)
            title: End Date
          description: End date (YYYY-MM-DD)
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SignalGateStatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SignalGateStatusResponse:
      properties:
        gates:
          items:
            $ref: '#/components/schemas/SignalGateResult'
          type: array
          title: Gates
        all_gates_passed:
          anyOf:
            - type: boolean
            - type: 'null'
          title: All Gates Passed
        effective_date_range:
          $ref: '#/components/schemas/app__models__signal_acceptance__DateRange'
        signal_count:
          type: integer
          title: Signal Count
        by_signal_type:
          items:
            $ref: '#/components/schemas/SignalTypeHitRate'
          type: array
          title: By Signal Type
        data_source:
          $ref: '#/components/schemas/DataSourceContext'
      type: object
      required:
        - gates
        - all_gates_passed
        - effective_date_range
        - signal_count
        - by_signal_type
        - data_source
      title: SignalGateStatusResponse
      description: Quick pass/fail gate status with source context.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SignalGateResult:
      properties:
        gate_name:
          type: string
          title: Gate Name
        target:
          anyOf:
            - type: number
            - type: 'null'
          title: Target
        actual:
          anyOf:
            - type: number
            - type: 'null'
          title: Actual
        passed:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Passed
        sample_size:
          type: integer
          title: Sample Size
        significant:
          type: boolean
          title: Significant
        description:
          type: string
          title: Description
        tier:
          type: string
          title: Tier
      type: object
      required:
        - gate_name
        - target
        - actual
        - passed
        - sample_size
        - significant
        - description
        - tier
      title: SignalGateResult
      description: |-
        Result of a single signal-level acceptance gate.

        Unlike GateResult (daily snapshots), this adds:
        - tier: "blocking" or "warning" for weight auto-apply decisions
        - significant: whether sample size is sufficient (n >= 30)
        - sample_size: explicit count used for computation
        - target/actual/passed are nullable for N/A gates (e.g. tier_churn)
    app__models__signal_acceptance__DateRange:
      properties:
        min:
          type: string
          format: date
          title: Min
        max:
          type: string
          format: date
          title: Max
        note:
          anyOf:
            - type: string
            - type: 'null'
          title: Note
      type: object
      required:
        - min
        - max
      title: DateRange
      description: Effective date range with optional annotation.
    SignalTypeHitRate:
      properties:
        signal_type:
          type: string
          title: Signal Type
        total:
          type: integer
          title: Total
        wins:
          type: integer
          title: Wins
        hit_rate:
          type: number
          title: Hit Rate
        avg_return_5d:
          type: number
          title: Avg Return 5D
        significant:
          type: boolean
          title: Significant
      type: object
      required:
        - signal_type
        - total
        - wins
        - hit_rate
        - avg_return_5d
        - significant
      title: SignalTypeHitRate
      description: Hit rate breakdown for a single signal type.
    DataSourceContext:
      properties:
        source:
          type: string
          title: Source
        conditioning:
          type: string
          title: Conditioning
        implication:
          type: string
          title: Implication
        comparable_to:
          type: string
          title: Comparable To
      type: object
      required:
        - source
        - conditioning
        - implication
        - comparable_to
      title: DataSourceContext
      description: Identifies the data source and its conditioning for interpretability.
    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

````