JSPM

  • Created
  • Published
  • Downloads 60
  • Score
    100M100P100Q67787F
  • License MIT

Stock technical indicators and strategies in TypeScript for browser and server programs.

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vases-indicatorts) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    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 { ao } from 'indicatorts';
    
    const highs = [10, 20, 30, 40];
    const lows = [1, 2, 3, 4];
    
    // Awesome Oscillator!
    const result = ao(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.