dreamRs / apexcharter

:bar_chart: R Htmlwidget for ApexCharts.js
https://dreamrs.github.io/apexcharter
Other
140 stars 15 forks source link

Add support for candlestick #19

Closed pvictor closed 4 years ago

pvictor commented 4 years ago

https://apexcharts.com/javascript-chart-demos/candlestick-charts/

pvictor commented 4 years ago

Install version 0.1.5 from CRAN, then:

library(apexcharter)
data("candles")
apex(
  candles,
  aes(x = datetime, open = open, close = close, low = low, high = high),
  type = "candlestick"
)

image