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

# Market leaderboard by signal category

> Returns stocks grouped by signal category. Each group contains the top 5 stocks.

Categories: gainers, losers, 52-week highs/lows, overbought/oversold (RSI),
momentum leaders, pulse leaders, entry timing.

All categories filter to liquid stocks (price >= $10, 20-day avg volume >= 500K).



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/market/leaderboard
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/leaderboard:
    get:
      tags:
        - Market Live
      summary: Market leaderboard by signal category
      description: >-
        Returns stocks grouped by signal category. Each group contains the top 5
        stocks.


        Categories: gainers, losers, 52-week highs/lows, overbought/oversold
        (RSI),

        momentum leaders, pulse leaders, entry timing.


        All categories filter to liquid stocks (price >= $10, 20-day avg volume
        >= 500K).
      operationId: get_leaderboard_api_graph_v1_market_leaderboard_get
      responses:
        '200':
          description: Leaderboard groups
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LeaderboardResponse'
        '504':
          description: Query timeout
components:
  schemas:
    LeaderboardResponse:
      properties:
        groups:
          items:
            $ref: '#/components/schemas/LeaderboardGroup'
          type: array
          title: Groups
        as_of:
          type: string
          format: date-time
          title: As Of
        source:
          type: string
          title: Source
          default: realtime_sip
      type: object
      required:
        - groups
        - as_of
      title: LeaderboardResponse
    LeaderboardGroup:
      properties:
        id:
          type: string
          title: Id
        label:
          type: string
          title: Label
        stocks:
          items:
            $ref: '#/components/schemas/LeaderboardStock'
          type: array
          title: Stocks
          default: []
      type: object
      required:
        - id
        - label
      title: LeaderboardGroup
    LeaderboardStock:
      properties:
        symbol:
          type: string
          title: Symbol
        price:
          anyOf:
            - type: number
            - type: 'null'
          title: Price
        change_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Change Pct
        volume:
          anyOf:
            - type: integer
            - type: 'null'
          title: Volume
        signal_value:
          anyOf:
            - type: number
            - type: 'null'
          title: Signal Value
      type: object
      required:
        - symbol
      title: LeaderboardStock

````