> ## 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 history bars

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

`GET /v1/tv/history?symbol={}&resolution={}&from={}&to={}`




## OpenAPI

````yaml orderly.openapi get /v1/tv/history
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/history:
    get:
      tags:
        - public
      summary: Get tradingview history bars
      description: |
        **Limit: 10 requests per 1 second per IP address**

        `GET /v1/tv/history?symbol={}&resolution={}&from={}&to={}`
      parameters:
        - name: symbol
          in: query
          description: ''
          required: true
          example: ''
          schema:
            type: string
        - name: resolution
          in: query
          description: ''
          required: true
          example: ''
          schema:
            type: string
        - name: from
          in: query
          description: ''
          required: true
          example: ''
          schema:
            type: string
        - name: to
          in: query
          description: ''
          required: true
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TvHistoryResponse'
      deprecated: false
components:
  schemas:
    TvHistoryResponse:
      type: object
      required:
        - c
        - h
        - l
        - o
        - s
        - t
        - v
      properties:
        s:
          type: string
        t:
          type: array
          items:
            type: integer
        o:
          type: array
          items:
            oneOf:
              - type: integer
              - type: number
        h:
          type: array
          items:
            type: number
        l:
          type: array
          items:
            type: number
        c:
          type: array
          items:
            type: number
        v:
          type: array
          items:
            type: number

````