> ## Documentation Index
> Fetch the complete documentation index at: https://tradewatch.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Technical Indicators

> Retrieve technical analysis indicators for a stock.

Returns trend, momentum, and volatility indicators computed from historical price data.
Omit `name` to get the full list of supported indicator keys. Supply `name` to compute
a specific indicator — optionally tuned with a custom `period`.



## OpenAPI

````yaml /openapi.json get /stocks/{symbol}/indicators
openapi: 3.1.0
info:
  title: tradewatch.io
  version: 3.1.0
  description: Financial market data for Developers
servers:
  - url: https://api.tradewatch.io
    description: Production API server
security:
  - API Key: []
tags:
  - name: Account
    description: >-
      In this section, you can find methods that can be helpful to manage your
      API account.
    x-displayName: Account
  - name: Currencies
    description: >-
      In this section, you can find methods that can be helpful to retrieve data
      for traditional currencies (Forex).
    x-displayName: Currencies
  - name: Crypto
    description: >-
      In this section, you can find methods that can be helpful to retrieve data
      for cryptocurrencies.
    x-displayName: Crypto
  - name: Indices
    description: >-
      In this section, you can find methods that can be helpful to retrieve data
      for market indices.
    x-displayName: Indices
  - name: Stocks
    description: >-
      In this section, you can find methods that can be helpful to retrieve data
      for stocks and equities.
    x-displayName: Stocks
  - name: Fundamentals
    description: Financial statements and company data sourced from SEC EDGAR filings.
  - name: Markets
    description: Stock exchange and market session information.
  - name: Commodities
    description: >-
      In this section, you can find methods that can be helpful to retrieve data
      for commodities.
    x-displayName: Commodities
paths:
  /stocks/{symbol}/indicators:
    get:
      tags:
        - Stocks
      summary: Technical Indicators
      description: >-
        Retrieve technical analysis indicators for a stock.


        Returns trend, momentum, and volatility indicators computed from
        historical price data.

        Omit `name` to get the full list of supported indicator keys. Supply
        `name` to compute

        a specific indicator — optionally tuned with a custom `period`.
      operationId: stocks_get_indicators
      parameters:
        - name: symbol
          in: path
          required: true
          schema:
            type: string
            description: Stock ticker symbol (e.g., 'AAPL', 'TSLA').
            title: Symbol
          description: Stock ticker symbol (e.g., 'AAPL', 'TSLA').
        - name: name
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Indicator to compute. Supported values: `sma` (Simple Moving
              Average), `ema` (Exponential Moving Average), `rsi` (Relative
              Strength Index), `macd` (MACD), `bollinger` (Bollinger Bands),
              `atr` (Average True Range), `stochastic` (Stochastic Oscillator),
              `cci` (Commodity Channel Index), `obv` (On-Balance Volume), `adx`
              (Average Directional Index), `supertrend`, `ichimoku` (Ichimoku
              Cloud), `vwap` (VWAP), `williams-r`, `momentum`, `roc` (Rate of
              Change), `wma` (Weighted MA), `keltner` (Keltner Channel),
              `donchian` (Donchian Channel), `ad` (Accumulation/Distribution).
              Omit to receive the full list of available indicators.
            title: Name
          description: >-
            Indicator to compute. Supported values: `sma` (Simple Moving
            Average), `ema` (Exponential Moving Average), `rsi` (Relative
            Strength Index), `macd` (MACD), `bollinger` (Bollinger Bands), `atr`
            (Average True Range), `stochastic` (Stochastic Oscillator), `cci`
            (Commodity Channel Index), `obv` (On-Balance Volume), `adx` (Average
            Directional Index), `supertrend`, `ichimoku` (Ichimoku Cloud),
            `vwap` (VWAP), `williams-r`, `momentum`, `roc` (Rate of Change),
            `wma` (Weighted MA), `keltner` (Keltner Channel), `donchian`
            (Donchian Channel), `ad` (Accumulation/Distribution). Omit to
            receive the full list of available indicators.
        - name: period
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            description: >-
              Lookback period in trading days for the indicator calculation
              (e.g., 14 for RSI, 20 for SMA/Bollinger). Defaults vary by
              indicator.
            title: Period
          description: >-
            Lookback period in trading days for the indicator calculation (e.g.,
            14 for RSI, 20 for SMA/Bollinger). Defaults vary by indicator.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StockApiResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    StockApiResponse:
      properties:
        data:
          title: Data
          description: >-
            Endpoint-specific response payload. Structure varies by endpoint and
            parameters.
        symbol:
          anyOf:
            - type: string
            - type: 'null'
          title: Symbol
          description: >-
            Stock ticker symbol the data relates to (e.g., 'AAPL', 'TSLA'). Null
            for market-wide endpoints.
      additionalProperties: true
      type: object
      title: StockApiResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    API Key:
      description: Authentication via API key header
      type: apiKey
      name: api-key
      in: header

````