> ## 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 Acceptance Report

> Full signal-level acceptance report with all gates and diagnostics.



## OpenAPI

````yaml /api/openapi.json get /api/internal/acceptance/signals/report
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/report:
    get:
      tags:
        - acceptance-signals
      summary: Get Signal Acceptance Report
      description: Full signal-level acceptance report with all gates and diagnostics.
      operationId: get_signal_acceptance_report_api_internal_acceptance_signals_report_get
      parameters:
        - name: start_date
          in: query
          required: true
          schema:
            type: string
            format: date
            description: Start date (YYYY-MM-DD)
            title: Start Date
          description: Start date (YYYY-MM-DD)
        - name: end_date
          in: query
          required: true
          schema:
            type: string
            format: date
            description: End date (YYYY-MM-DD)
            title: End Date
          description: End date (YYYY-MM-DD)
        - name: regime
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by regime
            title: Regime
          description: Filter by regime
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SignalAcceptanceReport'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SignalAcceptanceReport:
      properties:
        start_date:
          type: string
          format: date
          title: Start Date
        end_date:
          type: string
          format: date
          title: End Date
        effective_date_range:
          $ref: '#/components/schemas/app__models__signal_acceptance__DateRange'
        signal_count:
          type: integer
          title: Signal Count
        data_source:
          $ref: '#/components/schemas/DataSourceContext'
        gates:
          items:
            $ref: '#/components/schemas/SignalGateResult'
          type: array
          title: Gates
        all_gates_passed:
          anyOf:
            - type: boolean
            - type: 'null'
          title: All Gates Passed
        spearman:
          items:
            $ref: '#/components/schemas/SpearmanResult'
          type: array
          title: Spearman
        tier_win_rates:
          items:
            $ref: '#/components/schemas/TierWinRate'
          type: array
          title: Tier Win Rates
        quality_tier_win_rates:
          items:
            $ref: '#/components/schemas/TierWinRate'
          type: array
          title: Quality Tier Win Rates
        by_signal_type:
          items:
            $ref: '#/components/schemas/SignalTypeHitRate'
          type: array
          title: By Signal Type
        by_regime:
          items:
            $ref: '#/components/schemas/RegimeSignalPerformance'
          type: array
          title: By Regime
        funnel:
          $ref: '#/components/schemas/SignalFunnelReport'
        slippage:
          $ref: '#/components/schemas/SlippageSummary'
        daily_volume:
          items:
            $ref: '#/components/schemas/DailyVolume'
          type: array
          title: Daily Volume
      type: object
      required:
        - start_date
        - end_date
        - effective_date_range
        - signal_count
        - data_source
        - gates
        - all_gates_passed
        - spearman
        - tier_win_rates
        - quality_tier_win_rates
        - by_signal_type
        - by_regime
        - funnel
        - slippage
        - daily_volume
      title: SignalAcceptanceReport
      description: |-
        Full signal-level acceptance report.

        Combines gate results, correlation analysis, tier win rates,
        and diagnostic information (funnel, slippage, volume, regime breakdown).
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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.
    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.
    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)
    SpearmanResult:
      properties:
        score_family:
          type: string
          title: Score Family
        horizon:
          type: string
          title: Horizon
        overall:
          anyOf:
            - type: number
            - type: 'null'
          title: Overall
        bullish_only:
          anyOf:
            - type: number
            - type: 'null'
          title: Bullish Only
        bearish_only:
          anyOf:
            - type: number
            - type: 'null'
          title: Bearish Only
        p_value_overall:
          anyOf:
            - type: number
            - type: 'null'
          title: P Value Overall
        p_value_bullish:
          anyOf:
            - type: number
            - type: 'null'
          title: P Value Bullish
        p_value_bearish:
          anyOf:
            - type: number
            - type: 'null'
          title: P Value Bearish
        sample_size:
          type: integer
          title: Sample Size
          default: 0
      type: object
      required:
        - score_family
        - horizon
      title: SpearmanResult
      description: Spearman rank correlation result for a score family x horizon.
    TierWinRate:
      properties:
        tier:
          type: string
          title: Tier
        win_rate:
          anyOf:
            - type: number
            - type: 'null'
          title: Win Rate
        sample_size:
          type: integer
          title: Sample Size
          default: 0
        avg_return:
          anyOf:
            - type: number
            - type: 'null'
          title: Avg Return
      type: object
      required:
        - tier
      title: TierWinRate
      description: Win rate for a specific score tier.
    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.
    RegimeSignalPerformance:
      properties:
        regime:
          type: string
          title: Regime
        hit_rate:
          type: number
          title: Hit Rate
        avg_return_5d:
          type: number
          title: Avg Return 5D
        sample_size:
          type: integer
          title: Sample Size
        significant:
          type: boolean
          title: Significant
      type: object
      required:
        - regime
        - hit_rate
        - avg_return_5d
        - sample_size
        - significant
      title: RegimeSignalPerformance
      description: Signal performance within a specific regime.
    SignalFunnelReport:
      properties:
        total_signals:
          type: integer
          title: Total Signals
        funnel:
          items:
            $ref: '#/components/schemas/FunnelEntry'
          type: array
          title: Funnel
        conversion_rate:
          type: number
          title: Conversion Rate
      type: object
      required:
        - total_signals
        - funnel
        - conversion_rate
      title: SignalFunnelReport
      description: Signal funnel with conversion rate and leak rate changes.
    SlippageSummary:
      properties:
        executed_count:
          type: integer
          title: Executed Count
        avg_decision_slippage_bps:
          anyOf:
            - type: number
            - type: 'null'
          title: Avg Decision Slippage Bps
        avg_market_slippage_bps:
          anyOf:
            - type: number
            - type: 'null'
          title: Avg Market Slippage Bps
        avg_total_slippage_bps:
          anyOf:
            - type: number
            - type: 'null'
          title: Avg Total Slippage Bps
      type: object
      required:
        - executed_count
        - avg_decision_slippage_bps
        - avg_market_slippage_bps
        - avg_total_slippage_bps
      title: SlippageSummary
      description: Mean slippage metrics for executed signals.
    DailyVolume:
      properties:
        date:
          type: string
          format: date
          title: Date
        total_signals:
          type: integer
          title: Total Signals
        by_type:
          additionalProperties:
            type: integer
          type: object
          title: By Type
      type: object
      required:
        - date
        - total_signals
        - by_type
      title: DailyVolume
      description: Daily signal volume by type — pipeline health metric.
    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
    FunnelEntry:
      properties:
        status:
          type: string
          title: Status
        count:
          type: integer
          title: Count
        pct:
          type: number
          title: Pct
        trailing_14d_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Trailing 14D Pct
        leak_rate_change:
          anyOf:
            - type: number
            - type: 'null'
          title: Leak Rate Change
      type: object
      required:
        - status
        - count
        - pct
        - trailing_14d_pct
        - leak_rate_change
      title: FunnelEntry
      description: Single stage in the signal funnel.

````