Skip to content

📊 Trading indicators designed for technical analysts' use

License

Notifications You must be signed in to change notification settings

bartdominiak/tactician

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tactician

Trading analysis comprehensive indicators.

Tactician Logo

npm version license

Table of Contents

Installation

Prerequisites

  • Node.js (v12.0 or higher)
  • Npm or Yarn

Using npm

npm install tactician

Using Yarn

yarn install tactician

Using pnpm

pnpm add tactician

Usage

import { rsi, obv, stoch, macd } from 'tactician';

const ohlcData = [
  { open: 10, high: 12, low: 11, close: 1, volume: 10 },
  { open: 10, high: 12, low: 11, close: 2, volume: 10 },
  // More OHLC data...
];

const rsiResults = rsi(ohlcData);
const obvResults = obv(ohlcData);
const stochResults = stoch(ohlcData);
const macdResults = macd(ohlcData);

Contributors

Thanks to all the contributors who have helped this project grow

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

About

📊 Trading indicators designed for technical analysts' use

Resources

License

Stars

Watchers

Forks

Packages

No packages published