Registered User Joined: 12/6/2004 Posts: 5
|
Hi,
I created a formula to find stocks that went down, were down for a while and started to go up.
I got TSFG for example and base on that I created a formula.
I am looking to find stocks like TSFG when it was on July 9, 2008 when the stock went down for several month, then the BOP turned green after 15 days that it was yellow.
I would like to find the first day it turned Green after a long time it was not greee.
For some reason it does do what I want.
See below the formula I created.
Thank you in advance
Jacob
(BOP1 > 15) AND (BOP1.1 < 15) AND
AVGC20.10 < AVGC40.10 AND
AVGC20.20 < AVGC40.20 AND
AVGC20.40 < AVGC40.40 AND
AVGC20.60 < AVGC40.60 AND
C > C2 AND
C > O AND
C > 1 AND
C < 30 AND
V > 3000
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Green means BOP is greater than thirty, red means BOP less than negative 30 and yellow means BOP is between thirty and negative thirty.
So if you just want to find the crossup, you would use:
BOP > 30 AND BOP1.1 <= 30
If you wanted to make sure it was a crossup after a long time, you would need to test for previous days as well (the following requires BOP to not be green for at least 5-Bars prior to the crossup):
BOP > 30 AND BOP1.1 <= 30 AND BOP1.2 <= 30 AND BOP1.3 <= 30 AND BOP1.4 <= 30 AND BOP1.5 <= 30
You may wish to review the following:
PCF Formula Descriptions
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
|