UNPKG

@sunrise1002/tats

Version:

Techincal Indicators written in javascript

18 lines (17 loc) 465 B
import { CandleList } from '../StockData'; /** * Created by AAravindan on 5/4/16. */ import { IndicatorInput } from '../indicator/indicator'; export declare class RenkoInput extends IndicatorInput { period?: number; brickSize?: number; useATR?: boolean; low?: number[]; open?: number[]; volume?: number[]; high?: number[]; close?: number[]; timestamp?: number[]; } export declare function renko(input: RenkoInput): CandleList;