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

# Get tradingview localized config info

> **Limit: 10 requests per 1 second per IP address**

`GET /v1/tv/config`




## OpenAPI

````yaml orderly.openapi get /v1/tv/config
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/tv/config:
    get:
      tags:
        - public
      summary: Get tradingview localized config info
      description: |
        **Limit: 10 requests per 1 second per IP address**

        `GET /v1/tv/config`
      parameters:
        - name: locale
          in: query
          description: ''
          required: true
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TvConfigResponse'
      deprecated: false
components:
  schemas:
    TvConfigResponse:
      type: object
      required:
        - d
        - s
      properties:
        s:
          type: string
        d:
          type: object
          required:
            - accountManager
            - accountSummaryRow
            - durations
            - orderCustomFields
            - orderHistoryCustomFields
            - positionCustomFields
            - pullingInterval
          properties:
            accountSummaryRow:
              type: array
              items:
                $ref: '#/components/schemas/AccountSummary'
            accountManager:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                  title:
                    type: string
                  columns:
                    type: array
                    items:
                      $ref: '#/components/schemas/AccountSummary'
            durations:
              type: array
              items:
                type: object
                properties:
                  id:
                    type: string
                  title:
                    type: string
                  hasDatePicker:
                    type: boolean
                  hasTimePicker:
                    type: boolean
                  default:
                    type: boolean
                  supportedOrderTypes:
                    type: array
                    items:
                      type: string
            orderCustomFields:
              type: array
              items:
                $ref: '#/components/schemas/OrderCustomField'
            orderHistoryCustomFields:
              type: array
              items:
                $ref: '#/components/schemas/OrderCustomField'
            positionCustomFields:
              type: array
              items:
                type: object
                required:
                  - alignment
                  - id
                  - title
                  - tooltip
                properties:
                  id:
                    type: string
                  title:
                    type: string
                  tooltip:
                    type: string
                  alignment:
                    type: string
            pullingInterval:
              type: object
              required:
                - accountManager
                - balances
                - orders
                - positions
                - quotes
              properties:
                quotes:
                  type: integer
                orders:
                  type: integer
                positions:
                  type: integer
                accountManager:
                  type: integer
                balances:
                  type: integer
    AccountSummary:
      type: object
      required:
        - id
        - title
      properties:
        id:
          type: string
        title:
          type: string
    OrderCustomField:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        tooltip:
          type: string
        alignment:
          type: string

````