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: Peter Timaratz who wrote (4138)5/5/1998 2:54:00 PM
From: Roy Yorgensen  Read Replies (1) | Respond to of 11149
 
To all Ver 2 Beta Testers, RE- looping

Would the following example result in a list of all issues that meet the criteria for the specified day?
(I realize I may have some of the syntax incorrect, but I think you will get the idea.)

For Day = 0 to 250, Step -1

Close(day)>Close(day-1)
Vol(day)>Vol(day-1)
Vol(day-1)<Vol(day-2)
...
...
Println Symbol,Colse(day)-close(day-1)

next day

I would be using this to backtest my scans and have the results calulated and printed in the output file.

Thanks for your time
:>) happy trading
Roy



To: Peter Timaratz who wrote (4138)5/5/1998 6:10:00 PM
From: Bob Jagow  Read Replies (1) | Respond to of 11149
 
No way to Exit processing input.lst, Peter, except to press the
cancel button--actually pretty useful because you know where you
are in the list and how many hits and can then load the partial
list into disp_charts to see what the hits look like.

The only way to Exit symbol processing is
--------------
for i = start to end
...
if cond then
...
i:= end;
endif;
next i;
--------------
Bob