Socket
Socket
Sign inDemoInstall

technicalindicators

Package Overview
Dependencies
4
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    technicalindicators

Techincal Indicators written in javascript


Version published
Weekly downloads
3.9K
increased by3.19%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Travis CI

TechnicalIndicators

A javascript technical indicators written in javascript.

Installation

Node.js versions >= 6.4

npm install --save technicalindicators
const SMA = require('technicalindicators').SMA;

Node.js versions < 6.4

npm install --save babel-polyfill
npm install --save technicalindicators
require('babel-polyfill');
const SMA = require('technicalindicators/dist/browser').SMA;

Webpack

Make sure you have the following in your config file.

module.exports = {
  resolve: {
    mainFields: ["module", "main"]
  }
}

Browser

For browser install using bower or npm, but it is necessary to include the babel-polyfill otherwise you will get an error. For example see index.html

npm install --save technicalindicators
npm install --save babel-polyfill
bower install --save technicalindicators
<script src="node_modules/babel-polyfill/browser.js"></script>
<script src="bower_components/technicalindicators/browser.js"></script>

All indicators will be available in window object. So you can just use

sma({period : 5, values : [1,2,3,4,5,6,7,8,9], reversedInput : true});

or

SMA.calculate({period : 5, values : [1,2,3,4,5,6,7,8,9]});

Playground

Playground with code completion

Available Indicators

  1. Accumulation Distribution Line (ADL).
  2. Average Directional Index (ADX).
  3. Average True Range (ATR).
  4. Bollinger Bands (BB).
  5. Commodity Channel Index (CCI).
  6. Force Index (FI).
  7. Know Sure Thing (KST).
  8. Moving Average Convergence Divergence (MACD).
  9. On Balance Volume (OBV).
  10. [Parabolic Stop and Reverse (PSAR)*] (https://github.com/anandanand84/technicalindicators/blob/master/test/momentum/PSAR.js "PSAR").
  11. Rate of Change (ROC).
  12. Relative Strength Index (RSI).
  13. Simple Moving Average (SMA).
  14. Stochastic Oscillator (KD).
  15. Triple Exponentially Smoothed Average (TRIX).
  16. Volume Weighted Average Price (VWAP).
  17. Exponential Moving Average (EMA).
  18. Weighted Moving Average (WMA).
  19. Wilder’s Smoothing (Smoothed Moving Average, WEMA).
  20. WilliamsR (W%R).

Chart Types

  1. Renko (renko)
  2. Heikin-Ashi (HA)

CandleStick Pattern

  1. Abandoned Baby.
  2. Bearish Engulfing Pattern.
  3. Bullish Engulfiing Pattern.
  4. Dark Cloud Cover.
  5. Downside Tasuki Gap.
  6. Doji.
  7. DragonFly Doji.
  8. GraveStone Doji.
  9. BullishHarami.
  10. Bearish Harami Cross.
  11. Bullish Harami Cross.
  12. Bullish Marubozu.
  13. Bearish Marubozu.
  14. Evening Doji Star.
  15. Evening Star.
  16. Bearish Harami.
  17. Piercing Line.
  18. Bullish Spinning Top.
  19. Bearish Spinning Top.
  20. Morning Doji Star.
  21. Morning Star.
  22. Three Black Crows.
  23. Three White Soldiers.

or

Search for all bullish or bearish using

var twoDayBullishInput = {
  open: [23.25,15.36],
  high: [25.10,30.87],
  close: [21.44,27.89],
  low: [20.82,14.93],
}

var bullish = require('technicalindicators').bullish;

bullish(twoDayBullishInput) //true

API

There are three ways you can use to get the indicator results.

calculate

Every indicator has a static method calculate which can be used to calculate the indicator without creating an object.

const sma = require('technicalindicators').sma;
var prices = [1,2,3,4,5,6,7,8,9,10,12,13,15];
var period = 10;
sma({period : period, values : prices})

or

const SMA = require('technicalindicators').SMA;
var prices = [1,2,3,4,5,6,7,8,9,10,12,13,15];
var period = 10;
SMA.calculate({period : period, values : prices})

nextValue

nextValue method is used to get the next indicator value.

var sma = new SMA({period : period, values : []});
var results = [];
prices.forEach(price => {
  var result = sma.nextValue(price);
  if(result)
    results.push(result)
});

getResult

This a merge of calculate and nextValue. The usual use case would be

  1. Initialize indicator with available price value

  2. Get results for initialized values

  3. Use nextValue to get next indicator values for further tick.

    var sma = new SMA({period : period, values : prices});
    sma.getResult(); // [5.5, 6.6, 7.7, 8.9]
    sma.nextValue(16); // 10.1
    

    Note: Calling nextValue will not update getResult() value.

Precision

This uses regular javascript numbers, so there can be rounding errors which are negligible for a technical indicators, you can set precision by using the below config. By default there is no precision set.

const technicalIndicators = require('technicalindicators');
technicalIndicators.setConfig('precision', 10);

Contribute

Create issues about anything you want to report, change of API's, or request for adding new indicators. You can also create pull request with new indicators.

Environment dependencies

TechnicalIndicators depends on the canvas package, which requires some dependencies to be installed. You can find the instructions to do that here. If you do not install these dependencies, expect to get this error message during the installation of TechnicalIndicators:

> canvas@1.6.6 install /Users/balupton/Projects/trading/technicalindicators/node_modules/canvas
> node-gyp rebuild

./util/has_lib.sh: line 31: pkg-config: command not found
gyp: Call to './util/has_lib.sh freetype' returned exit status 0 while in binding.gyp. while trying to load binding.gyp

Setup

git clone git@github.com:anandanand84/technicalindicators.git  # or use your fork
cd technicalindicators
npm install
gulp watch-test

Running tests and getting coverage

npm test
npm run cover

Adding new indicators.

  1. Add tests for the indicator. Make it pass. It would be better if a sample of the stockcharts excel is used for the test case.
  2. Add the indicator to the index.js
  3. Run npm run build so it adds the indicator to the browser.js
  4. Add it to read me, with the link to the tonicdev url containing the sample.
  5. Add indicator it to keywords in package.json and bower.json
  6. Send a pull request.

Verify Documentation

node testdocs.js
open "http://localhost:5444/testdocs.html"

Donate

BTC: 12eGmnhPrGuqvLNVnPddTaXm74hX68auTV

Keywords

FAQs

Last updated on 25 Aug 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc