60 day New High New Low on Double Volume binary Indicator This indicator plots a 1 when a stock makes a New 60 day High on Double Volume and -1 when it makes a new 60 day low on double volume nh:=H>Ref(HHV(H,60),-1); nl:=LRef(V,-1)*2; If(nh AND DV,1,If(nl AND DV,-1,0)) *****from Wabbit***** nice.... same function - different code: NH:=H>Ref(HHV(H,60),-1); NL:=LRef(V,-1)*2; DV*(NH-NL) I find this 'nicer' code than a whole pile of nested if() statements.