Simple Bullish/Bearish Harami candle screener with simple ATR filter – works pretty well
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ATR = AverageTrueRange[2](close)[2] BearishHarami = high < high[1] and low > low[1] and close[1] > open[1] and close < open and open < close[1] and close > open[1] and open - close > ATR BullishHarami = high < high[1] and low > low[1] and close[1] < open[1] and close > open and close < open[1] and open > close[1] and close - open > ATR If BearishHarami Then  Harami = -1 ElsIf BullishHarami Then  Harami = 1 EndIf Condition = (BearishHarami Or BullishHarami) SCREENER[Condition] (Harami AS "HaramiDirection") | 
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments : Filename : download the ITF files
									Filename : download the ITF filesPRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
 
								
							
 
									 
									 
										 
										 
										
 
								 
								
 
										 
									 
										 
										
 
										 
									
 
										 
									
 
								 
									 
										 
									
 
										
 
										 
									
 
										 
									
 
										 
									 
										 
										
 
										 
										
 
								
 
								 
								 
									 
		 
		 
		
excellent, thank you