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

# Signal intake from Go trade-executor

> Receives an intraday signal from the Go trade-executor. Localhost-only, no authentication required.



## OpenAPI

````yaml /api/openapi.json post /api/internal/intraday/{symbol}/signal
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/intraday/{symbol}/signal:
    post:
      tags:
        - Intraday Internal
      summary: Signal intake from Go trade-executor
      description: >-
        Receives an intraday signal from the Go trade-executor. Localhost-only,
        no authentication required.
      operationId: receive_signal_api_internal_intraday__symbol__signal_post
      parameters:
        - name: symbol
          in: path
          required: true
          schema:
            type: string
            title: Symbol
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IncomingSignal'
      responses:
        '200':
          description: Signal accepted and routed
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response Receive Signal Api Internal Intraday  Symbol  Signal
                  Post
        '403':
          description: Not localhost
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IncomingSignal:
      properties:
        signal_id:
          type: string
          title: Signal Id
        symbol:
          type: string
          title: Symbol
        signal_type:
          type: string
          title: Signal Type
        direction:
          type: string
          pattern: ^(long|short)$
          title: Direction
        trigger_price:
          type: number
          title: Trigger Price
        atr:
          anyOf:
            - type: number
            - type: 'null'
          title: Atr
        confluence_count:
          type: integer
          title: Confluence Count
          default: 0
        phase:
          anyOf:
            - type: string
            - type: 'null'
          title: Phase
        timestamp:
          anyOf:
            - type: string
            - type: 'null'
          title: Timestamp
        levels:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Levels
        quality_tier:
          anyOf:
            - type: string
            - type: 'null'
          title: Quality Tier
      type: object
      required:
        - signal_id
        - symbol
        - signal_type
        - direction
        - trigger_price
      title: IncomingSignal
      description: Signal received from Go trade-executor.
    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

````