MetaStock -> Tools -> The Explorer -> New Copy and paste formula below. ================== True 52-Week Highs ================== ---8<--------------------------- 52-Week true Highs *Input today's data date in filter section!* Only stocks trading since 52 weeks ago are considered candidates for this exploration. Rem out code {AND V>0} in filter section to explore for non-volume instruments, such as indices and Forex. { ©Copyright 2003 Jose Silva } { http://www.metastocktools.com } ------------------ Column A: Close CLOSE ------------------ Column B: % change { % change from previous Close } Int((C/Ref(C,-1)-1)*1000+.5)/10 ------------------ Column C: $'000 { today's turnover in $'000 } Int((MP()*V+500)/1000) ------------------ Filter: { Today's data date, user input section } day:= 18; { today (1~31) } mth:= 9; { current month (1~12) } yr:= 2003; { current year, eg 2003 } { *********************************** } active:=Year()>yr-1 OR (Year()=yr-1 AND (Month()>mth OR Month()=mth AND DayOfMonth()>=day)); start:=active AND Alert(active=0,2); DayOfMonth()=day AND Month()=mth AND Year()=yr AND Highest(start) AND C>Ref(HighestSince(1,start,C),-1) AND V>0 ---8<--------------------------- http://www.metastocktools.com