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

# Top stocks by relative volume

> Returns top 15 stocks ranked by relative volume (today's volume / 20-day average).

Filters: price >= $10, 20-day average volume >= 500K.
Data source: v_market_data_daily view (ClickHouse).



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/market/most-active
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/most-active:
    get:
      tags:
        - Market Live
      summary: Top stocks by relative volume
      description: >-
        Returns top 15 stocks ranked by relative volume (today's volume / 20-day
        average).


        Filters: price >= $10, 20-day average volume >= 500K.

        Data source: v_market_data_daily view (ClickHouse).
      operationId: get_most_active_api_graph_v1_market_most_active_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 50
            minimum: 1
            description: Number of results
            default: 15
            title: Limit
          description: Number of results
      responses:
        '200':
          description: Most active stocks by relative volume
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MostActiveResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '504':
          description: Query timeout
components:
  schemas:
    MostActiveResponse:
      properties:
        stocks:
          items:
            $ref: '#/components/schemas/MostActiveStock'
          type: array
          title: Stocks
        as_of:
          type: string
          format: date-time
          title: As Of
        source:
          type: string
          title: Source
          default: realtime_sip
      type: object
      required:
        - stocks
        - as_of
      title: MostActiveResponse
      description: Top stocks by relative volume.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    MostActiveStock:
      properties:
        symbol:
          type: string
          title: Symbol
        rvol:
          type: number
          title: Rvol
        price:
          anyOf:
            - type: number
            - type: 'null'
          title: Price
        change_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Change Pct
        direction:
          type: string
          title: Direction
          default: flat
        volume_today:
          anyOf:
            - type: integer
            - type: 'null'
          title: Volume Today
        avg_volume_20d:
          anyOf:
            - type: integer
            - type: 'null'
          title: Avg Volume 20D
      type: object
      required:
        - symbol
        - rvol
      title: MostActiveStock
      description: Single stock in the most-active ranking.
    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

````