/*[[ Name := BullPierce Author := Copyright © 2005 Alejandro Galindo ]]*/ //--- Bullish Piercing (2 bars) cuma cari kalo ga ada BullEngulf if !UserFunction("BullEngulf") then { if c[2] < o[2] & c[1] > o[1] & (o[1] < c[2] | l[1] < l[2]) & c[1] > c[2]+((o[2]-c[2])/2) then Return(True) else Return(False); } else { Return(False); };