indicatorts
TypeScript icon, indicating that this package has built-in type declarations

1.0.18 • Public • Published

npm version License Build Status codecov CodeQL Analysis

Indicator TS

Indicator is a TypeScript module providing various stock technical analysis indicators, strategies, and a backtest framework for trading.

This is a clone of my Indicator Go Golang module.

Indicators Provided

The following list of indicators are currently supported by this package:

Trend Indicators

Momentum Indicators

Volatility Indicators

Volume Indicators

Strategies Provided

Strategies relies on the following:

The following list of strategies are currently supported by this package:

Trend Strategies

Momentum Strategies

Volatility Strategies

Volume Strategies

Backtest

Backtesting is the method for seeing how well a strategy would have done. The following backtesting functions are provided for evaluating strategies.

Chart

Chart provides an easy way to plot the outcome of the indicators and the strategies.

Build

The project can be build from its source through the build command.

npm run build

Usage

Install package.

npm install indicatorts

Import indicator.

import {awesomeOscillator} from 'indicatorts';

const highs = [10, 20, 30, 40];
const lows = [1, 2, 3, 4];

const ao = awesomeOscillator(highs, lows);

Disclaimer

The information provided on this project is strictly for informational purposes and is not to be construed as advice or solicitation to buy or sell any security.

License

Copyright (c) 2022 Onur Cinar. All Rights Reserved.

The source code is provided under MIT License.

Package Sidebar

Install

npm i indicatorts

Weekly Downloads

181

Version

1.0.18

License

MIT

Unpacked Size

490 kB

Total Files

147

Last publish

Collaborators

  • cinar