> ## 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 Strategy Map

> Return strategy map with live co-occurrence data.



## OpenAPI

````yaml /api/openapi.json get /api/internal/signals/strategy-map
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/strategy-map:
    get:
      tags:
        - signal-registry
      summary: Get Strategy Map
      description: Return strategy map with live co-occurrence data.
      operationId: get_strategy_map_api_internal_signals_strategy_map_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)
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StrategyMapResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    StrategyMapResponse:
      properties:
        strategies:
          items:
            $ref: '#/components/schemas/StrategyEntry'
          type: array
          title: Strategies
        cooccurrence:
          items:
            $ref: '#/components/schemas/CooccurrenceEntry'
          type: array
          title: Cooccurrence
        date_range:
          $ref: '#/components/schemas/app__models__signal_registry__DateRange'
      type: object
      required:
        - strategies
        - cooccurrence
        - date_range
      title: StrategyMapResponse
      description: Strategy map with co-occurrence data.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    StrategyEntry:
      properties:
        strategy_name:
          type: string
          title: Strategy Name
        category:
          type: string
          title: Category
        direction:
          type: string
          title: Direction
        key_requirements:
          items:
            type: string
          type: array
          title: Key Requirements
        match_count:
          type: integer
          title: Match Count
        win_rate:
          anyOf:
            - type: number
            - type: 'null'
          title: Win Rate
        avg_return_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Avg Return Pct
      type: object
      required:
        - strategy_name
        - category
        - direction
        - key_requirements
        - match_count
        - win_rate
        - avg_return_pct
      title: StrategyEntry
      description: Strategy definition with live performance data.
    CooccurrenceEntry:
      properties:
        signal_type:
          type: string
          title: Signal Type
        strategy_name:
          type: string
          title: Strategy Name
        count:
          type: integer
          title: Count
      type: object
      required:
        - signal_type
        - strategy_name
        - count
      title: CooccurrenceEntry
      description: Signal-strategy co-occurrence count.
    app__models__signal_registry__DateRange:
      properties:
        start:
          type: string
          title: Start
        end:
          type: string
          title: End
      type: object
      required:
        - start
        - end
      title: DateRange
      description: Date range for the query.
    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

````