---
title: "Technical Indicators"
method: GET
path: "/indicator"
---

# Technical Indicators

`GET /indicator`

Return technical indicator with price data. List of supported indicators can be found <a href="https://docs.google.com/spreadsheets/d/1ylUvKHVYN2E87WdwIza8ROaCpd48ggEl1k5i5SgA29k/edit?usp=sharing" target="_blank">here</a>.

## Query parameters

- `symbol` string, required
- `resolution` string, required
- `from` integer, required
- `to` integer, required
- `indicator` string, required
- `Indicator specific fields` object

## Response `200`

successful operation

- TechnicalIndicators
  - `o` number[] — List of open prices for returned candles.
  - `h` number[] — List of high prices for returned candles.
  - `l` number[] — List of low prices for returned candles.
  - `c` number[] — List of close prices for returned candles.
  - `v` number[] — List of volume data for returned candles.
  - `t` integer[] — List of timestamp for returned candles.
  - `s` string — Status of the response. This field can either be ok or no_data.

## Changes

- **2020-05-28** `d25d49a41bb7` — 6 breaking
  - the `c` response's property type changed from `number` to `array`, and format from `float` to no format for status `200`
  - the `h` response's property type changed from `number` to `array`, and format from `float` to no format for status `200`
  - the `l` response's property type changed from `number` to `array`, and format from `float` to no format for status `200`
  - the `o` response's property type changed from `number` to `array`, and format from `float` to no format for status `200`
  - …2 more
- **2020-05-26** `c5b8e420b78c` — 1 breaking, 9 info
  - removed the request body
  - api tag `Default` removed
  - added the new optional `query` request parameter `Indicator specific fields`
  - added the optional property `c` to the response with the `200` status
  - …6 more

[Change history](https://skmtc.dev/finnhub-stock-api/apis/finnhub-api/changes/indicator/get.md)

---

[API](https://skmtc.dev/finnhub-stock-api/apis/finnhub-api.md) · [All operations](https://skmtc.dev/finnhub-stock-api/apis/finnhub-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/finnhub-stock-api/finnhub-api/revisions/2e4c53648ee2/schema)
