@abdullahjaswal/tickyr-charts-react
v0.1.3
Published
Tickyr Charts for React: opinionated, canvas-rendered trading and financial-data charts, powered by a vendored Rust/WASM engine.
Downloads
107
Readme
Install
bun add @abdullahjaswal/tickyr-charts-react react react-dom
# or: npm install @abdullahjaswal/tickyr-charts-react react react-domreact and react-dom are peer dependencies.
Quick start
import { ChartsProvider, CandleChart } from "@abdullahjaswal/tickyr-charts-react"
export default function App() {
return (
<ChartsProvider theme="dark" palette="Monochrome">
<CandleChart
data={{ candles: ohlcBars }}
width={900}
height={400}
indicators={[{ type: "rsi", period: 14 }]}
vwap={{ visible: true }}
/>
</ChartsProvider>
)
}Full prop tables, the chart gallery, and the SolidJS build (@abdullahjaswal/tickyr-charts-solid) live in the main repo:
https://github.com/AbdullahJaswal/tickyr-charts
