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

# /tradingview/quotes/technicals

> Get technical analysis indicators and ratings for a ticker

**Price:** 1 credit

**⚠️ Common errors:** 412: Ticker not found



## OpenAPI

````yaml /openapi/finance-markets.json post /api/tradingview/quotes/technicals
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/tradingview/quotes/technicals:
    post:
      tags:
        - /tradingview
      summary: /tradingview/quotes/technicals
      description: |-
        Get technical analysis indicators and ratings for a ticker

        **Price:** 1 credit

        **⚠️ Common errors:** 412: Ticker not found
      operationId: __api_tradingview_quotes_technicals_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TradingViewQuotesTechnicalsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TradingViewTechnicals'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TradingViewQuotesTechnicalsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        symbol:
          type: string
          minLength: 1
      type: object
      required:
        - symbol
    TradingViewTechnicals:
      properties:
        '@type':
          type: string
          default: TradingViewTechnicals
        symbol:
          type: string
        summary_rating:
          anyOf:
            - type: string
            - type: 'null'
        summary_value:
          anyOf:
            - type: number
            - type: 'null'
        moving_averages_rating:
          anyOf:
            - type: string
            - type: 'null'
        moving_averages_value:
          anyOf:
            - type: number
            - type: 'null'
        oscillators_rating:
          anyOf:
            - type: string
            - type: 'null'
        oscillators_value:
          anyOf:
            - type: number
            - type: 'null'
        rsi:
          anyOf:
            - type: number
            - type: 'null'
        stoch_k:
          anyOf:
            - type: number
            - type: 'null'
        stoch_d:
          anyOf:
            - type: number
            - type: 'null'
        cci20:
          anyOf:
            - type: number
            - type: 'null'
        adx:
          anyOf:
            - type: number
            - type: 'null'
        awesome_oscillator:
          anyOf:
            - type: number
            - type: 'null'
        momentum:
          anyOf:
            - type: number
            - type: 'null'
        macd_level:
          anyOf:
            - type: number
            - type: 'null'
        macd_signal:
          anyOf:
            - type: number
            - type: 'null'
        ema10:
          anyOf:
            - type: number
            - type: 'null'
        sma10:
          anyOf:
            - type: number
            - type: 'null'
        ema20:
          anyOf:
            - type: number
            - type: 'null'
        sma20:
          anyOf:
            - type: number
            - type: 'null'
        ema50:
          anyOf:
            - type: number
            - type: 'null'
        sma50:
          anyOf:
            - type: number
            - type: 'null'
        ema100:
          anyOf:
            - type: number
            - type: 'null'
        sma100:
          anyOf:
            - type: number
            - type: 'null'
        ema200:
          anyOf:
            - type: number
            - type: 'null'
        sma200:
          anyOf:
            - type: number
            - type: 'null'
        ichimoku_base_line:
          anyOf:
            - type: number
            - type: 'null'
        vwma:
          anyOf:
            - type: number
            - type: 'null'
        hull_ma9:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - symbol
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````