| 
 PureBytes Links 
Trading Reference Links 
 | 
MetaStock -> Tools -> The Explorer -> New
Copy and paste formulae below.
jose '-)
==================
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://users.bigpond.com/prominex/pegasus.htm }
------------------
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:=  6;     { today (1~31)          }
mth:=  4;     { current month (1~12)  }
yr:= 2004;    { current year, eg 2004 }
{ *********************************** }
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<---------------------------
=================
True 52-Week Lows
=================
---8<---------------------------
            52-Week true Lows
 *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://users.bigpond.com/prominex/pegasus.htm }
------------------
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:=  6;     { today (1~31)          }
mth:=  4;     { current month (1~12)  }
yr:= 2004;    { current year, eg 2004 }
{ *********************************** }
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(LowestSince(1,start,C),-1)
AND V>0
---8<---------------------------
--- In equismetastock@xxxxxxxxxxxxxxx, Mohamed Kamar <mkamar2002@xxxx> 
wrote:
> Hi Group
> 
> I am new to this group. I want to explore the stocks
> which are meeting yearly high and lows. How we do this
> in  Metastock, please. I have Metastock V7.
> 
> Thanks in advance.
> 
> Kamar
 
Yahoo! Groups Links
<*> To visit your group on the web, go to:
     http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
     equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
     http://docs.yahoo.com/info/terms/
 
 |