PureBytes Links
Trading Reference Links
|
I've been using TC2000 for several years. One of the pluses is the
ability to run scans. Although the parameters one can use in the
scans are fairly limited, none-the-less, some useful information can
be gleaned.
Here is one I wrote searching for downward thrust. Essentially, what
it does is look for stocks in which the 3x3 moving average is at
least 1.05 times the closing price, and the closing price of the day
is less than the closing price of the previous day. On Saturday,
February 24, 2001, the scan turned up 0 results. Even when the scan
does turn up results, many times the stock is not thrusting, but
merely strongly trending downwards.
(AVGC3.13 >= 1.05 * C10) AND (C10 < C11) AND (AVGC3.12 >= 1.05 * C9)
AND (C9 < C10) AND (AVGC3.11 >= 1.05 * C8) AND (C8 < C9) AND
(AVGC3.10 >= 1.05 * C7) AND (C7 < C8) AND (AVGC3.9 >= 1.05 * C6) AND
(C6 < C7) AND (AVGC3.8 >= 1.05 * C5) AND (C5 < C6) AND (AVGC3.7 >=
1.05 * C4) AND (C4 < C5) AND (AVGC3.6 >= 1.05 * C3) AND (C3 < C4) AND
(AVGC3.5 >= 1.05 * C2) AND (C2 < C3)
------------------------ Yahoo! Groups Sponsor ---------------------~-~>
eGroups is now Yahoo! Groups
Click here for more details
http://us.click.yahoo.com/kWP7PD/pYNCAA/4ihDAA/zf_UlB/TM
---------------------------------------------------------------------_->
To unsubscribe from this group, send an email to:
dlevels-unsubscribe@xxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|