technicalindicators icon indicating copy to clipboard operation
technicalindicators copied to clipboard

bullishspinningtop and bearishspinningtop return the same result

Open thicow opened this issue 4 years ago • 0 comments

bullishspinningtop and bearishspinningtop return the same result to this sample: import * as ti from 'technicalindicators'; var singleInput = { open: [19.72], high: [19.86], close: [19.67], low: [19.38], }

const bullishspinningtop = ti.bullishspinningtop; bullishspinningtop(singleInput); // return true...

const bearishspinningtop = ti.bearishspinningtop; bearishspinningtop(singleInput); // return true

thicow avatar Aug 17 '20 01:08 thicow