@sunrise1002/tats
Version:
Techincal Indicators written in javascript
28 lines (27 loc) • 1.03 kB
JavaScript
import CandlestickFinder from './CandlestickFinder';
export default class BullishHarami extends CandlestickFinder {
constructor() {
super();
this.requiredCount = 2;
this.name = "BullishHarami";
}
logic(data, needGap) {
let firstdaysOpen = data.open[0];
let firstdaysClose = data.close[0];
let firstdaysHigh = data.high[0];
let firstdaysLow = data.low[0];
let seconddaysOpen = data.open[1];
let seconddaysClose = data.close[1];
let seconddaysHigh = data.high[1];
let seconddaysLow = data.low[1];
let isBullishHaramiPattern = (firstdaysOpen > seconddaysOpen) &&
(firstdaysClose < seconddaysClose) &&
(firstdaysOpen > seconddaysHigh) &&
(firstdaysLow < seconddaysLow) &&
(!needGap || (firstdaysClose < seconddaysOpen));
return (isBullishHaramiPattern);
}
}
export function bullishharami(data, needGap) {
return new BullishHarami().hasPattern(data, needGap);
}