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
16:44:25O46619H46696L46611C46634V171.81K
01234567890123456789012345678901234567890123456789
4600047000
16:42:0016:43:0016:44:00
ETH/USDLive Area + Bands
16:44:253410.443400.753362.75
340032003600
16:30:0016:35:0016:40:00
Portfolio10 assets · Live
100200300
16:30:0016:35:0016:40:00
P&L DeltaLive Bar
050100
16:40: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>
);
}