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

# Bulk start intraday sessions

> Create intraday sessions for multiple symbols in one call.

Used by the Command Center to start sessions for all Active column items.
Idempotent: skips symbols that already have active sessions today.
Autonomous mode items require the autonomous_execution disclaimer.



## OpenAPI

````yaml /api/openapi.json post /api/graph/v1/intraday/sessions/bulk-start
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/intraday/sessions/bulk-start:
    post:
      tags:
        - Intraday
      summary: Bulk start intraday sessions
      description: >-
        Create intraday sessions for multiple symbols in one call.


        Used by the Command Center to start sessions for all Active column
        items.

        Idempotent: skips symbols that already have active sessions today.

        Autonomous mode items require the autonomous_execution disclaimer.
      operationId: bulk_start_sessions_api_graph_v1_intraday_sessions_bulk_start_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkStartRequest'
        required: true
      responses:
        '200':
          description: Sessions created (partial success possible)
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: >-
                  Response Bulk Start Sessions Api Graph V1 Intraday Sessions
                  Bulk Start Post
        '403':
          description: Disclaimer not acknowledged
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BulkStartRequest:
      properties:
        items:
          items:
            $ref: '#/components/schemas/BulkSessionItem'
          type: array
          maxItems: 20
          minItems: 1
          title: Items
        trading_mode:
          type: string
          pattern: ^(paper|live)$
          title: Trading Mode
          default: paper
      type: object
      required:
        - items
      title: BulkStartRequest
      description: Bulk session start request.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    BulkSessionItem:
      properties:
        symbol:
          type: string
          maxLength: 10
          minLength: 1
          pattern: ^[A-Za-z.]{1,10}$
          title: Symbol
        mode:
          type: string
          pattern: ^(monitor|supervised|autonomous)$
          title: Mode
          default: monitor
      type: object
      required:
        - symbol
      title: BulkSessionItem
      description: Single symbol + mode for bulk session creation.
    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

````