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

# Update Snipe List Entry

> Update notes, status, or alert preferences for a sniped symbol.



## OpenAPI

````yaml /api/openapi.json patch /api/graph/v1/snipe-list/{symbol}
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/snipe-list/{symbol}:
    patch:
      tags:
        - Snipe List
      summary: Update Snipe List Entry
      description: Update notes, status, or alert preferences for a sniped symbol.
      operationId: update_snipe_list_entry_api_graph_v1_snipe_list__symbol__patch
      parameters:
        - name: symbol
          in: path
          required: true
          schema:
            type: string
            title: Symbol
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateSnipeListRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SnipeListItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    UpdateSnipeListRequest:
      properties:
        notes:
          anyOf:
            - type: string
            - type: 'null'
          title: Notes
        status:
          anyOf:
            - type: string
              pattern: ^(watching|ready|cooling)$
            - type: 'null'
          title: Status
        alert_prefs:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Alert Prefs
      type: object
      title: UpdateSnipeListRequest
    SnipeListItem:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        symbol:
          type: string
          title: Symbol
        notes:
          anyOf:
            - type: string
            - type: 'null'
          title: Notes
        status:
          type: string
          title: Status
          default: watching
        alert_prefs:
          additionalProperties: true
          type: object
          title: Alert Prefs
        added_at:
          type: string
          format: date-time
          title: Added At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        added_bull:
          anyOf:
            - type: number
            - type: 'null'
          title: Added Bull
        added_bear:
          anyOf:
            - type: number
            - type: 'null'
          title: Added Bear
        added_net:
          anyOf:
            - type: number
            - type: 'null'
          title: Added Net
        added_verdict:
          anyOf:
            - type: string
            - type: 'null'
          title: Added Verdict
        added_gates:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Added Gates
        last_price:
          anyOf:
            - type: number
            - type: 'null'
          title: Last Price
        change_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Change Pct
        bullish_confluence:
          anyOf:
            - type: number
            - type: 'null'
          title: Bullish Confluence
        bearish_confluence:
          anyOf:
            - type: number
            - type: 'null'
          title: Bearish Confluence
        net_confluence:
          anyOf:
            - type: number
            - type: 'null'
          title: Net Confluence
        directional_bias:
          anyOf:
            - type: string
            - type: 'null'
          title: Directional Bias
        conviction_max_v5:
          anyOf:
            - type: number
            - type: 'null'
          title: Conviction Max V5
          description: Max of bull/bear v5 confluence (unsigned 0-100)
        conflict_min_v5:
          anyOf:
            - type: number
            - type: 'null'
          title: Conflict Min V5
          description: Min of bull/bear v5 confluence (unsigned 0-100)
        directional_bias_v5:
          anyOf:
            - type: string
            - type: 'null'
          title: Directional Bias V5
          description: Directional bias from v5 scoring
        patterns:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Patterns
        verdict:
          anyOf:
            - type: string
            - type: 'null'
          title: Verdict
        all_quality_gates_passed:
          anyOf:
            - type: boolean
            - type: 'null'
          title: All Quality Gates Passed
        data_as_of:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Data As Of
        added_pulse_net:
          anyOf:
            - type: number
            - type: 'null'
          title: Added Pulse Net
        pulse_net:
          anyOf:
            - type: number
            - type: 'null'
          title: Pulse Net
        pulse_delta:
          anyOf:
            - type: number
            - type: 'null'
          title: Pulse Delta
        confluence_delta:
          anyOf:
            - type: number
            - type: 'null'
          title: Confluence Delta
        unack_alert_count:
          type: integer
          title: Unack Alert Count
          default: 0
      type: object
      required:
        - id
        - symbol
        - added_at
        - updated_at
      title: SnipeListItem
    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

````