Wick Charts logoWick Charts

High-performance charting library for
React

Candlestick, line, area, bar, pie, heatmap and sparkline charts — streaming in realtime.
Tiny bundle, zero deps, 20+ themes, fully open source.

React · Svelte · VueRealtimeThemeableMIT
BTC/USDLive Candlestick
10:57:25O40573H40763L40419C40420V1.55M
01234567890123456789012345678901234567890123456789
4000041000
10:55:0010:56:0010:57:00
ETH/USDLive Area + Bands
10:57:253393.543433.213372.01
320034003600
10:45:0010:50:0010:55:00
Portfolio10 assets · Live
100200300
10:45:0010:50:0010:55:00
P&L DeltaLive Bar
050100
10:50:0010:55:00

Get started

Install the package, add the AI skill, and start building charts.

1. Install

$ npm install @wick-charts/react

2. AI skill

Wick 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-charts

3. Build a chart

import {
ChartContainer, CandlestickSeries, Tooltip,
Crosshair, YAxis, TimeAxis
} from '@wick-charts/react';
 
function Chart({ data }) {
return (
<ChartContainer>
<CandlestickSeries data={data} />
<Tooltip />
<Crosshair />
<YAxis />
<TimeAxis />
</ChartContainer>
);
}