A powerful, high-performance financial charting library built on Apache ECharts
QFChart is a lightweight, feature-rich financial charting library designed for building professional trading platforms. It combines the power of Apache ECharts with an intuitive API specifically tailored for OHLCV candlestick charts, technical indicators, and interactive drawing tools.
- π Candlestick Charts - High-performance rendering of OHLCV data with customizable colors
- β‘ Real-time Updates - Incremental data updates for live trading without full re-renders
- π― Multi-Pane Indicators - Stack indicators in separate panes (RSI, MACD, etc.) with customizable heights
- π Overlay Indicators - Add indicators directly on top of the main chart (SMA, Bollinger Bands, etc.)
- π Interactive Zoom - Smooth zooming and panning with customizable data range controls
A plugin system is used to allow adding custom drawing tools to the charts. Currently available plugins :
- βοΈ Line Drawing - Draw trend lines and support/resistance levels
- π Fibonacci Retracements - Interactive Fibonacci levels with automatic ratio calculations
- π Measure Tool - Measure price and time distances between any two points
- π¨ Flexible Layouts - Configurable sidebars for data display (Left/Right/Floating)
- π± Responsive Design - Automatically handles window resizing and layout adjustments
- π Dark Mode Ready - Built-in dark theme with customizable colors
- βοΈ Plugin System - Extensible architecture for adding custom tools and features
- π· TypeScript Support - Written in TypeScript with full type definitions
- π Comprehensive Docs - Detailed API documentation and examples
- π― Event System - Rich event API for chart interactions and state management
- π§ Modular Architecture - Clean, maintainable codebase with clear separation of concerns
<!-- 1. Include ECharts (Required) -->
<script src="https://cdn.jsdelivr.net/npm/echarts/dist/echarts.min.js"></script>
<!-- 2. Include QFChart -->
<script src="https://cdn.jsdelivr.net/npm/@qfo/qfchart/dist/qfchart.min.browser.js"></script>npm install @qfo/qfchart echartsyarn add @qfo/qfchart echarts<div id="chart-container" style="width: 100%; height: 600px;"></div>import { QFChart } from '@qfo/qfchart';
// Initialize
const container = document.getElementById('chart-container');
const chart = new QFChart(container, {
title: 'BTC/USDT',
height: '600px',
databox: {
position: 'right', // or 'left', 'floating'
},
});
// Set market data
const marketData = [
{
time: 1620000000000,
open: 50000,
high: 51000,
low: 49000,
close: 50500,
volume: 100000,
},
// ... more data
];
chart.setMarketData(marketData);// Add overlay indicator (e.g., SMA)
const smaPlots = {
sma: {
data: [
{ time: 1620000000000, value: 50200 },
// ...
],
options: {
style: 'line',
color: '#2962FF',
linewidth: 2,
},
},
};
chart.addIndicator('SMA_20', smaPlots, {
isOverlay: true,
});
// Add separate pane indicator (e.g., MACD)
const macdPlots = {
histogram: {
data: [
{ time: 1748217600000, value: 513.1184116809054, options: { color: '#26A69A' } },
/* ... */
],
options: { style: 'histogram', color: '#26A69A' },
},
macd: {
data: [
/* ... */
],
options: { style: 'line', color: '#2962FF' },
},
signal: {
data: [
/* ... */
],
options: { style: 'line', color: '#FF6D00' },
},
};
chart.addIndicator('MACD', macdPlots, {
isOverlay: false,
height: 15,
controls: { collapse: true, maximize: true },
});import { LineTool, FibonacciTool, MeasureTool } from '@qfo/qfchart';
// Register plugins
chart.registerPlugin(new LineTool());
chart.registerPlugin(new FibonacciTool());
chart.registerPlugin(new MeasureTool());
// Drawing tools now available in the chart toolbarFor live trading applications, use the updateData() method for optimal performance:
// Keep reference to indicator
const macdIndicator = chart.addIndicator('MACD', macdPlots, {
isOverlay: false,
height: 15,
});
// WebSocket or data feed callback
function onNewTick(bar, indicators) {
// Step 1: Update indicator data first
macdIndicator.updateData(indicators);
// Step 2: Update chart data (triggers re-render)
chart.updateData([bar]);
}
// Update existing bar (e.g., real-time ticks)
const updatedBar = {
time: lastBar.time, // Same timestamp = update
open: lastBar.open,
high: Math.max(lastBar.high, newPrice),
low: Math.min(lastBar.low, newPrice),
close: newPrice,
volume: lastBar.volume + tickVolume,
};
chart.updateData([updatedBar]);- API Reference - Complete API documentation
- Layout & Customization - Styling and layout options
- Plugin System - Creating custom tools and extensions
- Live Demo - Interactive examples
const chart = new QFChart(container, {
title: 'BTC/USDT',
backgroundColor: '#1e293b',
upColor: '#00da3c',
downColor: '#ec0000',
fontColor: '#cbd5e1',
fontFamily: 'sans-serif',
padding: 0.2, // Vertical padding for auto-scaling
dataZoom: {
visible: true,
position: 'top',
height: 6,
start: 0,
end: 100,
},
watermark: true, // Show "QFChart" watermark
controls: {
collapse: true,
maximize: true,
fullscreen: true,
},
});- Apache ECharts - Core charting engine
- TypeScript - Type safety and developer experience
- Rollup - Module bundler for optimized builds
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Alaa-eddine KADDOURI
- GitHub: @QuantForgeOrg
Give a βοΈ if this project helped you!
For questions and support, please open an issue on GitHub Issues.
Built with β€οΈ by QuantForge
