@abdullahjaswal/tickyr-charts-solid
v0.1.3
Published
Tickyr Charts for SolidJS: opinionated, canvas-rendered trading and financial-data charts, powered by a vendored Rust/WASM engine.
Readme
Install
bun add @abdullahjaswal/tickyr-charts-solid solid-js
# or: npm install @abdullahjaswal/tickyr-charts-solid solid-jssolid-js is a peer dependency.
Quick start
import { ChartsProvider, CandleChart } from "@abdullahjaswal/tickyr-charts-solid"
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 React build (@abdullahjaswal/tickyr-charts-react) live in the main repo:
https://github.com/AbdullahJaswal/tickyr-charts
