Technical Indicators

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>.

get/indicator

Query parameters

symbolstring required

symbol

resolutionstring required

Supported resolution includes <code>1, 5, 15, 30, 60, D, W, M </code>.Some timeframes might not be available depending on the exchange.

frominteger required

UNIX timestamp. Interval initial value. If count is not provided, this field is required

tointeger required

UNIX timestamp. Interval end value. If count is not provided, this field is required

indicatorstring required

Indicator name. Full list can be found <a href="https://docs.google.com/spreadsheets/d/1ylUvKHVYN2E87WdwIza8ROaCpd48ggEl1k5i5SgA29k/edit?usp=sharing" target="_blank">here</a>.

Indicator specific fieldsobject

Check out <a href="https://docs.google.com/spreadsheets/d/1ylUvKHVYN2E87WdwIza8ROaCpd48ggEl1k5i5SgA29k/edit?usp=sharing" target="_blank">this page</a> to see which indicators and params are supported.

Response

successful operation

onumber float

List of open prices for returned candles.

hnumber float

List of high prices for returned candles.

lnumber float

List of low prices for returned candles.

cnumber float

List of close prices for returned candles.

vnumber float

List of volume data for returned candles.

tinteger

List of timestamp for returned candles.

sstring

Status of the response. This field can either be ok or no_data.

Example response

{
  "c": 5.962134,
  "s": "s",
  "t": 2,
  "v": 5.637377,
  "h": 6.0274563,
  "l": 1.4658129,
  "o": 0.8008282
}

Changes