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

> Return static signal definitions.



## OpenAPI

````yaml /api/openapi.json get /api/internal/signals/registry
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/signals/registry:
    get:
      tags:
        - signal-registry
      summary: Get Signal Registry
      description: Return static signal definitions.
      operationId: get_signal_registry_api_internal_signals_registry_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SignalRegistryResponse'
components:
  schemas:
    SignalRegistryResponse:
      properties:
        signals:
          items:
            $ref: '#/components/schemas/SignalRegistryEntry'
          type: array
          title: Signals
      type: object
      required:
        - signals
      title: SignalRegistryResponse
      description: Complete signal registry.
    SignalRegistryEntry:
      properties:
        signal_type:
          type: string
          title: Signal Type
        description:
          type: string
          title: Description
        category:
          type: string
          title: Category
        parameters:
          additionalProperties:
            anyOf:
              - type: number
              - type: integer
          type: object
          title: Parameters
        presets:
          $ref: '#/components/schemas/SignalPresets'
        phase_gate:
          type: string
          title: Phase Gate
        hostile_regimes:
          items:
            type: string
          type: array
          title: Hostile Regimes
        direction:
          type: string
          title: Direction
      type: object
      required:
        - signal_type
        - description
        - category
        - parameters
        - presets
        - phase_gate
        - hostile_regimes
        - direction
      title: SignalRegistryEntry
      description: Definition of a single signal type.
    SignalPresets:
      properties:
        etf_liquid:
          type: number
          title: Etf Liquid
        mega_cap:
          type: number
          title: Mega Cap
        default:
          type: number
          title: Default
      type: object
      required:
        - etf_liquid
        - mega_cap
        - default
      title: SignalPresets
      description: Preset scaling factors for different symbol categories.

````