> ## 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 COT positioning context

> Fetch current COT positioning from MarketCondition graph vertex.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/market/cot-positioning
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/cot-positioning:
    get:
      tags:
        - Market
      summary: Get COT positioning context
      description: Fetch current COT positioning from MarketCondition graph vertex.
      operationId: get_cot_positioning_api_graph_v1_market_cot_positioning_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CotPositioningResponse'
components:
  schemas:
    CotPositioningResponse:
      properties:
        equity_crowding_state:
          anyOf:
            - type: string
            - type: 'null'
          title: Equity Crowding State
        equity_crowding_pctile:
          anyOf:
            - type: number
            - type: 'null'
          title: Equity Crowding Pctile
        equity_direction:
          anyOf:
            - type: string
            - type: 'null'
          title: Equity Direction
        vol_supply_demand_state:
          anyOf:
            - type: string
            - type: 'null'
          title: Vol Supply Demand State
        vol_supply_demand_pctile:
          anyOf:
            - type: number
            - type: 'null'
          title: Vol Supply Demand Pctile
        nq_es_spread_state:
          anyOf:
            - type: string
            - type: 'null'
          title: Nq Es Spread State
        nq_es_spread_pctile:
          anyOf:
            - type: number
            - type: 'null'
          title: Nq Es Spread Pctile
        max_riskon_flag:
          type: boolean
          title: Max Riskon Flag
          default: false
        report_date:
          anyOf:
            - type: string
            - type: 'null'
          title: Report Date
      type: object
      title: CotPositioningResponse

````