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