diff --git a/web-dashboard/src/components/charts/CandlestickChart.tsx b/web-dashboard/src/components/charts/CandlestickChart.tsx new file mode 100644 index 000000000..bc953cb17 --- /dev/null +++ b/web-dashboard/src/components/charts/CandlestickChart.tsx @@ -0,0 +1,83 @@ +import { useEffect, useRef } from 'react'; +import { createChart, CandlestickSeries, type IChartApi, type CandlestickData, type Time } from 'lightweight-charts'; + +interface Props { + symbol: string; + data?: CandlestickData