TC2000 for Doug's 3x8 Trap L <= XAVGC8 and C > XAVGC8 and (C < XAVGC3.1) or (C < XAVGC3.2) or (C < XAVGC3.3) ================================================================================== TOS Code for Doug's 3x8 Trap def C = close; def L = low; def XAVGC8 = ExpAverage(close, 8); def XAVGC3 = ExpAverage(close, 3); # plot Dougstrap = ( L <= XAVGC8 and C > XAVGC8 and ((C < XAVGC3[1]) or (C < XAVGC3[2]) or (C < XAVGC3[3])) );