Candlesticks, lines, areas, bars — streaming in realtime.
AI‑first, tiny bundle, zero deps, 20+ themes, fully open source.
Install the package, add the AI skill, and start building charts.
$ npm install @wick-charts/reactWick Charts ships with a built-in AI skill. Your AI assistant will know every component, prop, and theme out of the box.
$ npx skills add mo4islona/wick-chartsimport { ChartContainer, CandlestickSeries, Tooltip, Crosshair, YAxis, TimeAxis} from '@wick-charts/react'; function Chart({ data }) { return ( <ChartContainer> <CandlestickSeries data={data} /> <Tooltip /> <Crosshair /> <YAxis /> <TimeAxis /> </ChartContainer> );}