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

 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext  
To: deep_rough who wrote (7514)11/2/1998 3:40:00 PM
From: Sean W. Smith  Read Replies (1) of 11149
 
Here ya go....

issuetype common;
output = "highvol.lst";

integer i;
integer flag;

flag:=0; // Set to Zero, Goes 1 if the Stock was picked

for i = -4 to 0 do

if ((min(i,i-1,vol) > 75000) and
(vol(i) > 3*avgvol(i-3,i-15)) and //today and yesterday
(vol(i-1) > 3*avgvol(i-4,i-16))) then
flag:=1;
endif;

if ((min(i,i-2,vol) > 75000) and
(vol(i) > 3*avgvol(i-3,i-15)) and //today and day before yest
(vol(i-2) > 3*avgvol(i-5,i-17))) then
flag:=1;
endif;
next i;

if (flag=1) then
println symbol;
endif;

I'm not embarrassed to say that it took me about 6 hours to convert this one scan

That's unfortunate. I'm getting the impression that you are bound and determined to make this as hard as possible. If you wanted to make this easier you could have asked from help here or from Quotes plus TS. I see that you choose to do it the hard way so that you would have more to gripe about. My best advice would be to ditch the attitude and work with people here who didn't make this decision, have nothing to do with this decision and are more than willing to help.

and I can't for the life of me understand why Gary Lyben felt I should have to do this just to remain a customer.

Well, I have been in gary's position as a developer before and understand the difficulty of this decision. Since you seemed to be upset about this why don't you call up QP and ask to talk to gary and express your concern. He always seems willing to listen.

1 down.... ??? to go....

Sean
Report TOU ViolationShare This Post
 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext