Trading analysis comprehensive indicators.
Table of Contents
- Node.js (v12.0 or higher)
- Npm or Yarn
npm install tactician
yarn install tactician
pnpm add tactician
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);
Thanks to all the contributors who have helped this project grow
This project is licensed under the MIT License - see the LICENSE.md file for details.