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

# Intraday index charts and quotes

> Returns intraday 5-min OHLCV bars and current quote data for DJIA, S&P 500,
and NASDAQ from FMP. Bars are in chronological order for candlestick rendering.

Cached for 60 seconds.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/market/indices
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/market/indices:
    get:
      tags:
        - Market Live
      summary: Intraday index charts and quotes
      description: >-
        Returns intraday 5-min OHLCV bars and current quote data for DJIA, S&P
        500,

        and NASDAQ from FMP. Bars are in chronological order for candlestick
        rendering.


        Cached for 60 seconds.
      operationId: get_indices_api_graph_v1_market_indices_get
      responses:
        '200':
          description: Index chart data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IndicesResponse'
components:
  schemas:
    IndicesResponse:
      properties:
        indices:
          items:
            $ref: '#/components/schemas/IndexEntry'
          type: array
          title: Indices
        as_of:
          type: string
          format: date-time
          title: As Of
      type: object
      required:
        - indices
        - as_of
      title: IndicesResponse
    IndexEntry:
      properties:
        symbol:
          type: string
          title: Symbol
        name:
          type: string
          title: Name
        price:
          anyOf:
            - type: number
            - type: 'null'
          title: Price
        change:
          anyOf:
            - type: number
            - type: 'null'
          title: Change
        change_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Change Pct
        bars:
          items:
            $ref: '#/components/schemas/IndexBar'
          type: array
          title: Bars
          default: []
      type: object
      required:
        - symbol
        - name
      title: IndexEntry
    IndexBar:
      properties:
        t:
          type: string
          title: T
        o:
          type: number
          title: O
        h:
          type: number
          title: H
        l:
          type: number
          title: L
        c:
          type: number
          title: C
        v:
          type: integer
          title: V
      type: object
      required:
        - t
        - o
        - h
        - l
        - c
        - v
      title: IndexBar

````