PureBytes Links
Trading Reference Links
|
Breakout Code for the "filter" column of an exploration is shown below. It
finds stocks breaking out of a minimum base of 4 weeks and a maximum of 12
weeks on 150 percent of the 50 day average volume. The code is inflexible
but it works.
CLOSE>Ref(HHV(CLOSE,20),-1)
AND
Ref(HighestBars(CLOSE)>20,-1)
AND
Ref(HighestBars(CLOSE)<60,-1)
AND
VOLUME>1.5*Mov(VOLUME,50,S
Dan
_________________________________________________________________
Join the world’s largest e-mail service with MSN Hotmail.
http://www.hotmail.com
|