Gold Customer
Joined: 11/17/2017 Posts: 14
|
I tried to convert this code that is not a PCF.
[daily sma (10,daily close) crosses daily ema(30,daily close) and [close >= 5]
This is how I wrote it, is this correct? I am getting very few hits with it.
C > AVGC10 AND XUP(AVGC10, XAVGC30) AND C >= C5
Thanks.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I don't see anything wrong with you condition formula. You could probaly shorten to just the following.
C >= 5 AND XUP(AVGC10, XAVGC30)
What list are you scanning?
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Gold Customer
Joined: 11/17/2017 Posts: 14
|
I usually scan all U.S stocks. I am only getting no more than 12 or 15 hits at a time, sometimes no even that many. I thought my converssion code was no good.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
I am currently getting 53 items returned when this is the only condition in a scan of the US Common Stocks WatchList. You might want to try removing and then re-adding the condition to the scan.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Gold Customer
Joined: 11/17/2017 Posts: 14
|
I will try that, Thanks Bruce.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
You're welcome.
-Bruce Personal Criteria Formulas TC2000 Support Articles
|