I have the following line of code in a scipt
if (CandleStickPattern(ChartPattern.BearishHarami, 0)[i+1] == 1) //1,2 BearishHarami
and, it's showing a Bearish Harami when the second bar is equal to the 1st bar - when open[1] = close[2].
Thought Harami should be when second bar is inside the 1st bar.
Maybe there is some <= and >= in the code when it should be < and >
Ditto for ChartPattern.BullishHarami. In the meantime I'm adding a workaround to my script

Comment