> ## 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 active entry signals

> Query active entry signals from the active_entry_signals view.

## Response Includes

For each signal:
- Signal identification (id, symbol, type)
- Trigger information (type, level, source)
- Scoring (conviction_score, confluence_score)
- Entry parameters (entry_price, stop_loss, risk_reward_ratio)
- Timing (timing_modifier, day_type)
- Execution status and suggested contract

## Filters

- **symbol**: Filter by stock symbol (optional)
- **active_only**: Only return active signals (default: true)

## Performance Target

<200ms response time.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/entry/signals
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/entry/signals:
    get:
      tags:
        - Entry Signals
      summary: Get active entry signals
      description: |-
        Query active entry signals from the active_entry_signals view.

        ## Response Includes

        For each signal:
        - Signal identification (id, symbol, type)
        - Trigger information (type, level, source)
        - Scoring (conviction_score, confluence_score)
        - Entry parameters (entry_price, stop_loss, risk_reward_ratio)
        - Timing (timing_modifier, day_type)
        - Execution status and suggested contract

        ## Filters

        - **symbol**: Filter by stock symbol (optional)
        - **active_only**: Only return active signals (default: true)

        ## Performance Target

        <200ms response time.
      operationId: get_entry_signals_api_graph_v1_entry_signals_get
      parameters:
        - name: symbol
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by stock symbol (e.g., 'AAPL')
            title: Symbol
          description: Filter by stock symbol (e.g., 'AAPL')
        - name: active_only
          in: query
          required: false
          schema:
            type: boolean
            description: Only return active signals
            default: true
            title: Active Only
          description: Only return active signals
      responses:
        '200':
          description: Active entry signals
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EntrySignalResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '504':
          description: Query timeout
components:
  schemas:
    EntrySignalResponse:
      properties:
        signals:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Signals
        count:
          type: integer
          title: Count
          description: Number of signals returned
        filters_applied:
          additionalProperties: true
          type: object
          title: Filters Applied
          description: Filters that were applied to the query
      type: object
      required:
        - count
      title: EntrySignalResponse
      description: Response containing entry signals.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````