Skip to content

bartdominiak/tactician

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

32 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

 
 
 

Contributors