Pop-Out-Of-Box - in BEAR Trend TC2000: MINC4 < (MAXC20.4 * 0.88) AND ABS(MAXC4 - MINC4) < MINC4 * 0.02 AND ABS(MAXO4 - MINO4) < MINC4 * 0.02 AND ABS(MAXC4 - MINO4) < MINC4 * 0.02 AND ABS(MAXO4 - MINC4) < MINC4 * 0.02 ---------------------------------------------------- TOS: # Pop-Out-Of-The-Box - in BEAR Trend # def O = open; def C = close; def H = high; def L = low; def MAXC4 = highest(close, 4); def MAXO4 = highest(open, 4); def MAXH4 = highest(high, 4); def MAXL4 = highest(low, 4); def MINC4 = lowest(close, 4); def MINO4 = lowest(open, 4); def MINH4 = lowest(high, 4); def MINL4 = lowest(low, 4); def MINC20 = lowest(close, 20); def MAXC20 = highest(close, 20); # plot POOTBbear = ( MINC4 < (MAXC20[4] * 0.88) AND ABSvalue(MAXC4 - MINC4) < MINC4 * 0.02 AND ABSvalue(MAXO4 - MINO4) < MINC4 * 0.02 AND ABSvalue(MAXC4 - MINO4) < MINC4 * 0.02 AND ABSvalue(MAXO4 - MINC4) < MINC4 * 0.02 ); ================================================== Pop-Out-Of-Box - in BULL Trend TC2000: MAXC4 > (MINC20.4 * 1.12) AND ABS(MAXC4 - MINC4) < MINC4 * 0.02 AND ABS(MAXO4 - MINO4) < MINC4 * 0.02 AND ABS(MAXC4 - MINO4) < MINC4 * 0.02 AND ABS(MAXO4 - MINC4) < MINC4 * 0.02 ---------------------------------------------------- TOS: # Pop-Out-Of-The-Box - in BULL Trend # def O = open; def C = close; def H = high; def L = low; def MAXC4 = highest(close, 4); def MAXO4 = highest(open, 4); def MAXH4 = highest(high, 4); def MAXL4 = highest(low, 4); def MINC4 = lowest(close, 4); def MINO4 = lowest(open, 4); def MINH4 = lowest(high, 4); def MINL4 = lowest(low, 4); def MINC20 = lowest(close, 20); def MAXC20 = highest(close, 20); # plot POOTBbull = ( MAXC4 > (MINC20[4] * 1.12) AND ABSvalue(MAXC4 - MINC4) < MINC4 * 0.02 AND ABSvalue(MAXO4 - MINO4) < MINC4 * 0.02 AND ABSvalue(MAXC4 - MINO4) < MINC4 * 0.02 AND ABSvalue(MAXO4 - MINC4) < MINC4 * 0.02 ); ==================================================