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 : The 56 Point TA; Charts With an Attitude -- Ignore unavailable to you. Want to Upgrade?


To: bdog who wrote (20405)8/11/1998 2:21:00 PM
From: bdog  Read Replies (2) | Respond to of 79243
 
Q+ Scan code for those interested: How to lookback via for loop.

should have posted w/scan
bdog

output= "60.lst";
integer mday,mstop;
mstop:=1;
exchange=AMEX,NASDAQ,NYSE;
issuetype=common;

for mday = -30 to -25 step 1
do
if close(0)>=1.6*close(mday)and
close(0) >=6 and close(0) <=20 and
mstop = 1 then
println symbol:-8,mday:-8:0,close(mday):-8:3,close(0):-8:3,
((close(0)-close(mday))/close(Mday))*100:-8:1,
vol(0):-12:0,avgvol(0,-30):-12:0,
sharesfloat:-8:1,shortint/(sharesfloat+.0000001):-8:3,
description:-40,IndustrySector:-25,IndustryGroup:-25;
mstop:=0;
endif;
next mday;