Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bfx-hf-chart

Package Overview
Dependencies
Maintainers
2
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bfx-hf-chart

HF Financial Charting Library

  • 1.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-83.33%
Maintainers
2
Weekly downloads
 
Created
Source

Bitfinex Honey Framework Financial Charting Library for Node.JS

Build Status

This is the official Bitfinex financial charting library, released as part of the Honey Framework. It renders entirely on HTML5 canvas elements, and supports all Honey Framework trading indicators.

Features

  • 100% canvas rendering
  • 100% Honey Framework indicator coverage
  • High-performance with large datasets
  • React wrapper component
  • Fully customizable

Installation

npm i --save bfx-hf-chart

Quickstart & Example

To get started, utilize the React component to render & pass data to the chart:

import React from 'react'
import BFXChart from '../dist/components/Chart/Chart'

const DATA = [....]

export default class Demo extends React.PureComponent {
  render () {
    return (
      <BFXChart
        candles={DATA}
        candleWidth='1m'
        width={800}
        height={600}
      />
    )
  }
}

Note that candle data is expected in Bitfinex array format, specifically:

const data = [[
  mts,
  open,
  close,
  high,
  low,
  volume,
], ...]

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Keywords

FAQs

Package last updated on 24 May 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc