Skip to content

QuantForgeOrg/QFChart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

31 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

QFChart

A powerful, high-performance financial charting library built on Apache ECharts

License npm version TypeScript Reddit

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.

QFChart Demo

✨ Features

Core Charting

  • πŸ“Š 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

Drawing Tools (Plugins)

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

Layout & Customization

  • 🎨 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

Developer Experience

  • πŸ”· 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

πŸ“¦ Installation

Browser (UMD)

<!-- 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

npm install @qfo/qfchart echarts

Yarn

yarn add @qfo/qfchart echarts

πŸš€ Quick Start

1. Create a Container

<div id="chart-container" style="width: 100%; height: 600px;"></div>

2. Initialize the Chart

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);

3. Add Indicators

// 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 },
});

4. Enable Drawing Tools

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 toolbar

πŸ”„ Real-time Updates

For 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]);

πŸ“– Documentation

🎨 Customization

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,
    },
});

πŸ› οΈ Tech Stack

🀝 Contributing

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.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

πŸ“ License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

πŸ‘¨β€πŸ’» Author

Alaa-eddine KADDOURI

🌟 Show Your Support

Give a ⭐️ if this project helped you!

πŸ“§ Support

For questions and support, please open an issue on GitHub Issues.


Built with ❀️ by QuantForge