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

# Patch Intraday Profile

> Partial update for settings gear.



## OpenAPI

````yaml /api/openapi.json patch /api/graph/v1/user/intraday-profile/
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/user/intraday-profile/:
    patch:
      tags:
        - Intraday Profile
      summary: Patch Intraday Profile
      description: Partial update for settings gear.
      operationId: patch_intraday_profile_api_graph_v1_user_intraday_profile__patch
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchIntradayProfileRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntradayProfileResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PatchIntradayProfileRequest:
      properties:
        account_tier:
          anyOf:
            - type: string
              pattern: ^(conservative|moderate|aggressive)$
            - type: 'null'
          title: Account Tier
        default_mode:
          anyOf:
            - type: string
              pattern: ^(monitor|supervised|autonomous)$
            - type: 'null'
          title: Default Mode
        max_daily_loss:
          anyOf:
            - type: number
              minimum: 100
            - type: 'null'
          title: Max Daily Loss
        max_portfolio_positions:
          anyOf:
            - type: integer
              maximum: 10
              minimum: 1
            - type: 'null'
          title: Max Portfolio Positions
        per_trade_risk:
          anyOf:
            - type: number
              minimum: 50
            - type: 'null'
          title: Per Trade Risk
        symbols_config:
          anyOf:
            - items:
                $ref: '#/components/schemas/SymbolConfig'
              type: array
            - type: 'null'
          title: Symbols Config
        session_prefs:
          anyOf:
            - $ref: '#/components/schemas/SessionPrefs'
            - type: 'null'
        notifications:
          anyOf:
            - $ref: '#/components/schemas/NotificationPrefs'
            - type: 'null'
        enabled_signal_types:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Enabled Signal Types
      type: object
      title: PatchIntradayProfileRequest
      description: Partial update for settings gear.
    IntradayProfileResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        user_id:
          type: string
          format: uuid
          title: User Id
        account_tier:
          type: string
          title: Account Tier
        default_mode:
          type: string
          title: Default Mode
        max_daily_loss:
          type: number
          title: Max Daily Loss
        max_portfolio_positions:
          type: integer
          title: Max Portfolio Positions
        per_trade_risk:
          type: number
          title: Per Trade Risk
        symbols_config:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Symbols Config
        session_prefs:
          additionalProperties: true
          type: object
          title: Session Prefs
        notifications:
          additionalProperties: true
          type: object
          title: Notifications
        enabled_signal_types:
          items:
            type: string
          type: array
          title: Enabled Signal Types
        supervised_trade_count:
          type: integer
          title: Supervised Trade Count
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - user_id
        - account_tier
        - default_mode
        - max_daily_loss
        - max_portfolio_positions
        - per_trade_risk
        - symbols_config
        - session_prefs
        - notifications
        - enabled_signal_types
        - supervised_trade_count
        - created_at
        - updated_at
      title: IntradayProfileResponse
      description: Full intraday profile response.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SymbolConfig:
      properties:
        symbol:
          type: string
          title: Symbol
        mode:
          type: string
          pattern: ^(monitor|supervised|autonomous)$
          title: Mode
          default: monitor
      type: object
      required:
        - symbol
      title: SymbolConfig
      description: Per-symbol configuration.
    SessionPrefs:
      properties:
        auto_start:
          type: boolean
          title: Auto Start
          default: false
        auto_close:
          type: boolean
          title: Auto Close
          default: true
      type: object
      title: SessionPrefs
      description: Session preferences.
    NotificationPrefs:
      properties:
        browser_push:
          type: boolean
          title: Browser Push
          default: false
        audio:
          type: boolean
          title: Audio
          default: true
        toast:
          type: boolean
          title: Toast
          default: true
      type: object
      title: NotificationPrefs
      description: Notification preferences.
    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

````