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