npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@fintatech/fintachart

v3.1.1

Published

FintaChart financial charting component

Readme

npm version

High-performance financial charting component for web applications. Designed for trading platforms, financial dashboards, and any HTML-based project that needs interactive market data visualization.

Features

  • 16+ chart types — Candlestick, OHLC, Heikin Ashi, Renko, Kagi, Line Break, Point & Figure, Hollow Candle, Range Bar, Candle Volume, Equi Volume, Mountain, Line, Area, and more
  • 100+ technical indicators — RSI, MACD, Bollinger Bands, Ichimoku, EMA, SMA, Stochastics, and the full range of standard analysis tools
  • Drawing and analysis tools — Lines, channels, rectangles, circles, ellipses, polygons, freehand, arrows, text and image annotations
  • Fibonacci tools — Retracements, Fan, Extensions, Arcs, Ellipses, Time Zones
  • Trend analysis — Andrews' Pitchfork, Raff Regression, Error Channel, Gann Fan, Speed Lines, Quadrant Lines, Tirone Levels
  • Pattern recognition — Head & Shoulders, ABCD, XABCD, Elliott Wave, Triangle, Kings Crown
  • Multiple data sources — File, REST API, and WebSocket adapters with custom datafeed support
  • 10 built-in themes — Dark, Light, Gray, Olive, Orange, Purple, Sky, Teal, Beet, Fintatech Dark
  • Multi-chart layouts — Multiple synchronized charts with shared toolbar
  • Trading integration — Orders, alerts, positions, SL/TP with full event system
  • Calendar events — Economic calendar overlay on chart
  • Localization — English and Ukrainian, extensible
  • Touch support — Mobile and tablet ready
  • State management — Save/restore workspace, indicators, shapes, templates

Installation

npm install @fintatech/fintachart

Quick Start

HTML

<!-- 1. Styles -->
<link rel="stylesheet" href="node_modules/@fintatech/fintachart/css/external/spectrum.min.css">
<link rel="stylesheet" href="node_modules/@fintatech/fintachart/css/external/toastr.min.css">
<link rel="stylesheet" href="node_modules/@fintatech/fintachart/css/external/jqNumericField.min.css">
<link rel="stylesheet" href="node_modules/@fintatech/fintachart/css/FintaChart.min.css">

<!-- 2. Framework dependencies -->
<script src="node_modules/@fintatech/fintachart/scripts/frameworks/Intl.min.js"></script>
<script src="node_modules/@fintatech/fintachart/scripts/frameworks/moment.min.js"></script>
<script src="node_modules/@fintatech/fintachart/scripts/frameworks/i18nextXHRBackend.min.js"></script>

<!-- 3. Main bundle -->
<script src="node_modules/@fintatech/fintachart/scripts/FintaChart.min.js"></script>

<!-- 4. Theme -->
<script src="node_modules/@fintatech/fintachart/scripts/themes/defaultTheme.js"></script>

<div id="chart"></div>

<script>
  // 5. Resource paths — must be set before creating the chart
  FintaChart.ResourcePath.localization = 'node_modules/@fintatech/fintachart/localization/';
  FintaChart.ResourcePath.htmlDialogs  = 'node_modules/@fintatech/fintachart/htmldialogs/';
  FintaChart.SvgLoader.path            = 'node_modules/@fintatech/fintachart/img/svg-icons/';

  // 6. Create chart
  var chart = new FintaChart.Chart({
    container: '#chart',
    datafeed: myDatafeed,
    instrument: {
      symbol: 'EUR/GBP',
      exchange: 'FOREX',
      tickSize: 0.00001
    },
    timeFrame: { interval: 1, periodicity: FintaChart.Periodicity.HOUR },
    theme: defaultTheme,
    showToolbar: true,
    showScrollbar: true,
    supportedTimeFrames: ['1 Minutes', '5 Minutes', '15 Minutes', '1 Hour', '4 Hours', '1 Day', '1 Week']
  });
</script>

React + TypeScript

import { useEffect, useRef } from 'react';

interface ChartProps {
  instrument: FintaChart.IInstrument;
}

export function Chart({ instrument }: ChartProps) {
  const containerRef = useRef<HTMLDivElement>(null);
  const chartRef = useRef<FintaChart.Chart | null>(null);

  useEffect(() => {
    if (!containerRef.current) return;

    FintaChart.ResourcePath.localization = 'node_modules/@fintatech/fintachart/localization/';
    FintaChart.ResourcePath.htmlDialogs  = 'node_modules/@fintatech/fintachart/htmldialogs/';
    FintaChart.SvgLoader.path            = 'node_modules/@fintatech/fintachart/img/svg-icons/';

    chartRef.current = new FintaChart.Chart({
      container: containerRef.current,
      datafeed: myDatafeed,
      instrument,
      timeFrame: { interval: 1, periodicity: FintaChart.Periodicity.MINUTE },
      theme: defaultTheme,
      showToolbar: true,
      showScrollbar: true,
      supportedTimeFrames: ['1 Minutes', '5 Minutes', '15 Minutes', '1 Hour', '4 Hours', '1 Day']
    });

    return () => {
      chartRef.current?.dispose();
      chartRef.current = null;
    };
  }, [instrument]);

  return <div ref={containerRef} style={{ width: '100%', height: '100%' }} />;
}

Documentation and Examples

Full documentation, API reference, and 14 runnable examples live on GitHub:

  • Docs: https://github.com/fintatech/fintachart/tree/master/docs
  • Examples: https://github.com/fintatech/fintachart/tree/master/examples
  • Repository: https://github.com/fintatech/fintachart

Browser Compatibility

| Browser | Version | |---------|---------| | Chrome | 29+ | | Safari | 9+ | | Firefox | 28+ | | Opera | 17+ | | Edge | 17+ | | Android Browser | 5+ |

License

Copyright (c) Fintatech B.V. All rights reserved.

Free to use in local development environments. A commercial license is required for any deployed or network-accessible use. See LICENSE.md for full terms, or contact [email protected].