Free & Open Source

TradingView-Style Charts for Everyone

Build beautiful, interactive financial charts with ease. Upload your CSV data and visualize it instantly. No API keys, no subscriptions, just charts.

$npm install aimlcharts

Everything You Need

Powerful features to help you build professional financial charts without the complexity.

CSV Upload

Drag and drop your CSV files to instantly visualize OHLC data. Supports various date formats and column names.

Candlestick Charts

Beautiful TradingView-style candlestick charts with support for OHLC data, volume, and moving averages.

Lightning Fast

Optimized rendering for smooth performance even with thousands of data points. No lag, no waiting.

Developer Friendly

Simple API, TypeScript support, and extensive documentation. Integrate in minutes, not hours.

Privacy First

All data processing happens client-side. Your financial data never leaves your browser.

Fully Customizable

Customize colors, indicators, and styling to match your brand or personal preferences.

Try It Yourself

Upload your CSV file with OHLC data or use our sample data to see the chart in action.

Upload Your Data

Drag and drop your CSV file

or click to browse your files

Required columns: date, open, high, low, close

CSV Format

date,open,high,low,close,volume
2024-01-01,100,105,98,103,1200000
2024-01-02,103,108,102,107,1500000
...

Required: date, open, high, low, close
Optional: volume

Sample Chart

20 data pointsLatest close: $136.00

Simple Integration

Get started in minutes with our straightforward API. Copy, paste, and you're charting.

import { TradingChart } from 'aimlcharts'

function App() {
  const data = [
    { date: '2024-01-01', open: 100, high: 105, low: 98, close: 103 },
    { date: '2024-01-02', open: 103, high: 108, low: 102, close: 107 },
    // ... more data
  ]

  return <TradingChart data={data} height={400} />
}