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
07:47:25O44368H44542L44275C44427V605.42K
01234567890123456789012345678901234567890123456789
430004400045000
07:45:0007:46:0007:47:00
ETH/USDLive Area + Bands
07:47:253660.773722.013628.05
340036003800
07:35:0007:40:0007:45:00
Portfolio10 assets · Live
100200300
07:35:0007:40:0007:45:00
P&L DeltaLive Bar
050
07:40:0007:45: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>
);
}