SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Strategies & Market Trends : Technical Analysis - Beginners -- Ignore unavailable to you. Want to Upgrade?


To: gonzongo who wrote (8267)4/4/1998 11:14:00 AM
From: freelyhovering  Respond to of 12039
 
gonzongo--Thanks for the feedback. I think I am in the right territory. I had 5 of the same stocks(TKTL OLOG ICAR KTIC and MPAA) plus

VF
BIRM
CALP
CIVC
LFBI
THE PHOTOGRAPHY EQUIPMENT INDUSTRY GROUP

Myron



To: gonzongo who wrote (8267)4/4/1998 8:57:00 PM
From: TechTrader42  Read Replies (2) | Respond to of 12039
 
Gonzongo: Here's my QP2 Dahl scan, for what it's worth:

//Dahl crossing 0 by Brooke
//mov(c,days,simp) - ref(mov(c,days,simp),-15)

output="dahl.lst";
input="portfoli.lst";

DaysToLoad = 250;

float a, b, c, d, dahl, prevdahl;

a := movavg(0,50,cl) ;
b := movavg(-15,50,cl) ;
c := movavg(-1,50,cl) ;
d := movavg(-16,50,cl) ;

dahl := (a-b);
prevdahl := (c-d);

if dahl>0 and prevdahl<0 then
println Symbol , "," , " dahl:", dahl , "," ," Close:", Close(0) , "," , " Vol:", vol(0) , " , " , " PE:", PE , " , " , " QRS:", QRS(0) , "," , " Sharesfloat:", Sharesfloat , "," , description;
endif;
//println symbol,", ",description,", ",close(0),"," dahl;
//endif;