Chart data fetcher

[apis/poloniex/public/Chart data fetcher]


Returns candlestick chart data. Required GET parameters are "currencyPair", "period" (candlestick period in seconds; valid values are 300, 900, 1800, 7200, 14400, and 86400), "start", and "end". "Start" and "end" are given in UNIX timestamp format and used to specify the date range for the data returned. https://docs.poloniex.com/#returnchartdata


Keywords: history, historical, trade, currency, pair, query, fetch, retrieve, chart, candlestick

Input ports

  • query:

    {"currencyPair": string, "start": number, "end": number, "period": number}

Output ports

  • data:

    {
      "date": number,
      "high": number,
      "low": number,
      "open": number,
      "close": number,
      "volume": number,
      "quoteVolume": number,
      "weightedAverage": number
    }[]
  • response:

    {"status": number, "headers": {string: any}, "body": string}
  • error: {"error": string}

Last updated