Components
Trading terminal price panel: OHLC candles with a volume strip, a crosshair that reads the exact bar into the header, and a gliding-thumb timeframe switch. Light and dark via shadcn theme tokens.
Loading preview...
import { Demo } from "@/components/ui/candle-chart"
export default function DemoOne() {
return (
<div className="w-full bg-background" style={{ background: "var(--card)" }}>
<Demo />
</div>
)
}