Registered User Joined: 12/17/2004 Posts: 10
|
I would like to develop a scan that would find TSV18 simple which crossed up from beneath zero to above zero within the past three days along with the 20 period MA of Money Stream crossing up through Money Stream within the past three days. This is to simplify finding stocks as per my September 22 submission in TC2000 Worden Report by Sir Datasheet.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Please try the following:
With Simple MA of MS:
TSV18 > 0 AND (TSV18.1 <= 0 OR TSV18.2 <= 0 OR TSV18.3 <= 0) AND MS20 > MS1 AND (MS20.1 <= MS1.1 OR MS20.2 <= MS1.2 OR MS20.3 <= MS1.3)
With Exponential MA of MS:
TSV18 > 0 AND (TSV18.1 <= 0 OR TSV18.2 <= 0 OR TSV18.3 <= 0) AND XAVG(MS1,20) > MS1 AND (XAVG(MS1.1,20) <= MS1.1 OR XAVG(MS1.2,20) <= MS1.2 OR XAVG(MS1.3,20) <= MS1.3)
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF) Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|