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 : TA-Quotes Plus -- Ignore unavailable to you. Want to Upgrade?


To: Sean W. Smith who wrote (2549)11/29/1997 4:25:00 PM
From: Bob Jagow  Read Replies (3) | Respond to of 11149
 
All,
I can't transfer data to a diskbuff!
This is with the 11/24 beta and 9/19 data under NT; works fine w data cd in, but attempt to transfer all just puts 278 bytes into each file (eg a.qlb).
Can transfer an individual symbol fine.

Appears no one else sees this--strange?

Bob



To: Sean W. Smith who wrote (2549)11/29/1997 5:02:00 PM
From: TechTrader42  Read Replies (1) | Respond to of 11149
 
Sean:

Here's a short scan for you: It looks for stocks with good relative strength that are reaching new yearly highs:

output="highqrs.lst";
if Close(0)> max(-1,-250,cl) and
qrs(0)>=70 and
PE<50 and
close(0)<20 and
Sharesfloat<=20 and
avgvol(0,-29)>25000 then;
println Symbol , "," , " Close:", Close(0) , "," , " Vol:", vol(0) , " , " , " PE:", PE , " , " , " QRS:", QRS(0) , "," , " Sharesfloat:", Sharesfloat , "," , description;
endif;

And thanks for the translations you sent. I can get all of them to work but this one, which was originally written by Bill R. I get a lot of error messages with it:

output = "CCI13BBB.rpt";
exchange nasdaq,nyse,amex;

integer i, N;
float CCIT, CCIY, DAT, DAY, AT, AY;

N:=13; // Number of periods in CCI calculation

//Calculate simple MA of typical price for N periods
//for Today and Yesterday. AT/AY are running averages.

AT := 0;
for i=1 to N-1 step 1 do
AT := AT+close(-i)+high(-i)+low(-i);
next i;

AY:=(close(-N)+high(-N)+low(-N)+AT)/(3*N); //Make sure to calc AY
first AT:=(close(0)+high(0)+low(0)+AT)/(3*N);

//println "AT":4,AT:8:2,"AY":4, AY:8:2
//Calculate simple MA of absolute value of difference between
//current typical price and above AT/AY over N periods
DAT:=0;

DAY:=0;
//Must use dual calc below since subtracted value is different (AT vs
AY) for i=0 to N-1 step 1 do
DAT:= DAT+abs((close(-i)+high(-i)+low(-i))/3-AT);
DAY:= DAY+abs((close(-i-1)+high(-i-1)+low(-i-1))/3-AY);
next i;

if DAT=0 then
DAT:=0.0001;
else
DAT:=DAT/N;
endif;

if DAY=0 then
DAY:=0.0001;
else
DAY:=DAY/N;
endif;

//Println "DAT":4,DAT:8:2,"DAY":4,DAY:8:2

//Calculate CCI for today CCIT and yesterday CCIY
CCIT:= ((close(0)+high(0)+low(0))/3 - AT)/(0.015*DAT);
CCIY:= ((close(0)+high(0)+low(0))/3 - AY)/(0.015*DAY);

//println symbol:8, "Tod CCI":9, CCIT:8:1,"Yes CCI":9, CCIY:12:1
//Now look for crossover with -150
if CCIT>-150 and
CCIY<-150 then
println symbol:8, "CCI Today":11,CCIT:6:0,"CCI
Yesterday":15,CCIY:6:0;
endif;

Brooke