Technical Indicator - Bearish Hammer
const hammer = require('technicalindicators').bearishhammer;
var singleInput = {
open: [32.10],
high: [32.10],
close: [30.10],
low: [26.10],
}
const result = hammer(singleInput) ? 'yes' : 'no';
console.log(`Is Bearish Hammer Pattern? : ${result}`);
no comments