| A. Normal Setup 
 1. Range Contraction Setup
 MA(ATR,10) < MA(ATR,50)
 
 consolidation range, looking for entry
 
 2. Range Expansion Setup
 
 MA(ATR,10) > 1.5*MA(ATR,50)
 
 Trend is moving
 
 3.Dip or Rally Setup
 {
 Close < Ref(Close,-7)-2*ATR
 Close >  MA(Close,40)+ 2*ATR
 
 Buy if Price Cross (0.8*ATR+Low)
 }
 
 
 B. Exit Targets
 
 1. Chandelier Stop
 High - 3 ATRS
 or Close - 2.5 ATRS
 
 Stops are only allowed to move up
 
 2. Yo Yo Stop
 
 Close - 1.5 ATRS
 
 Stops are allowed to move down
 
 3. combine 1 & 2, using the closest stops
 
 
 C. ADX Research
 
 Reliable indicator after consolidation, for details, check by yourselves if you like.
 
 |