> ## 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 current trading mode

> Returns the current trading mode (paper/live) and autonomous status.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/execution/mode
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/execution/mode:
    get:
      tags:
        - Execution
      summary: Get current trading mode
      description: Returns the current trading mode (paper/live) and autonomous status.
      operationId: get_execution_mode_api_graph_v1_execution_mode_get
      responses:
        '200':
          description: Trading mode returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExecutionModeResponse'
components:
  schemas:
    ExecutionModeResponse:
      properties:
        mode:
          type: string
          title: Mode
          description: 'Trading mode: ''paper'' or ''live'''
        autonomous_enabled:
          type: boolean
          title: Autonomous Enabled
          description: Whether autonomous trading is enabled
        badge:
          type: string
          title: Badge
          description: 'Display badge: ''PAPER'' or ''LIVE'''
      type: object
      required:
        - mode
        - autonomous_enabled
        - badge
      title: ExecutionModeResponse
      description: Response for execution mode query.

````