Skip to content

Instantly share code, notes, and snippets.

@WebMaestroFr
Last active May 2, 2022 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WebMaestroFr/a79ed69510013a13cc2bf46769c104d0 to your computer and use it in GitHub Desktop.
Save WebMaestroFr/a79ed69510013a13cc2bf46769c104d0 to your computer and use it in GitHub Desktop.
Candlesticks Chart for Recharts v2
import React, { ReactNode, useMemo } from "react";
import { Bar, RectangleProps, ComposedChart } from "recharts";
import { CategoricalChartProps } from "recharts/types/chart/generateCategoricalChart";
export interface CandlestickData {
open?: number;
high?: number;
low?: number;
close?: number;
}
export function CandlestickShape({
x,
y,
width,
height,
open,
high,
low,
close,
}: RectangleProps & CandlestickData) {
if (
x === undefined ||
y === undefined ||
width === undefined ||
height === undefined ||
open === undefined ||
high === undefined ||
low === undefined ||
close === undefined ||
high <= low
) {
return null;
}
const bullish = open < close;
const ratio = height / (high - low);
const top = bullish ? high - close : high - open;
const body = bullish ? close - open : open - close;
const center = x + width / 2;
return (
<g
fill={bullish ? "none" : "red"}
fillOpacity={0.5}
stroke={bullish ? "green" : "red"}
strokeOpacity={0.67}
>
<rect x={x} y={y + top * ratio} height={body * ratio} width={width} />
<line x1={center} y1={y} x2={center} y2={y + top * ratio} />
<line
x1={center}
y1={y + (top + body) * ratio}
x2={center}
y2={y + height}
/>
</g>
);
}
export function CandlesticksChart({
children,
data,
...props
}: CategoricalChartProps & {
children: ReactNode;
data: CandlestickData[];
}) {
const rangedData = useMemo(
() =>
data.map(({ high, low, ...ohlc }) => ({
high,
low,
...ohlc,
range: [low, high],
})),
[data]
);
return (
<ComposedChart {...props} data={rangedData}>
<Bar
dataKey="range"
isAnimationActive={false}
shape={<CandlestickShape />}
/>
{children}
</ComposedChart>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment