> ## 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 Official Close Status

> Read-only coverage check used by deploy gating and operators.



## OpenAPI

````yaml /api/openapi.json get /api/internal/official-closes/status
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/official-closes/status:
    get:
      tags:
        - official-closes
      summary: Get Official Close Status
      description: Read-only coverage check used by deploy gating and operators.
      operationId: get_official_close_status_api_internal_official_closes_status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OfficialCloseStatusResponse'
components:
  schemas:
    OfficialCloseStatusResponse:
      properties:
        expected_date:
          type: string
          format: date
          title: Expected Date
        covered_symbols:
          type: integer
          title: Covered Symbols
        smoke_symbol:
          type: string
          title: Smoke Symbol
        smoke_present:
          type: boolean
          title: Smoke Present
        ready:
          type: boolean
          title: Ready
      type: object
      required:
        - expected_date
        - covered_symbols
        - smoke_symbol
        - smoke_present
        - ready
      title: OfficialCloseStatusResponse

````