Registered User Joined: 8/4/2008 Posts: 12
|
I am brand new to Worden and would like to start with a PCF, but am not sure how to set up the conditions. Below is the model of a scan that I use with another firm that I would like to duplicate with your protocol.
The first and basic condition is a modified white candlestick scan. I want a nightly scan of “all stocks” that have gone up a prescribed minimum percentage (in this case .0340) from its opening price sometime during the trading day. I am not interested in the close.
The stock price limits are $3.60 to $200.00 and the minimum daily average volume for say the last 5 days would be 80,000 shares, regardless of price.
I will duplicate the scan changing the percent and number of days, which I should be able to handle once I have the correct format.
I would like to get this behind me and look forward to moving on with some of your interesting programs.
Many thanks – Lionel Giliotti
output = "sevenday.0340list";
if high(0) > open(0) * 1.0340
and high(-1) > open(-1) * 1.0340
and high(-2) > open(-2) * 1.0340
and high(-3) > open(-3) * 1.0340
and high(-4) > open(-4) * 1.0340
and high(-5) > open(-5) * 1.0340
and high(-6) > open(-6) * 1.0340
and AvgVol( 0 , -29 ) >80000
and close(0) > 3.60
and close(0) < 200
then
println symbol;
endif;
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Welcome to the forums. A very good foundation for learning how to use TeleChart can be gained by reviewing the following:
If you are new to TeleChart READ THIS FIRST!
Please try the following Personal Criteria Formula as an EasyScan Condition (it should probably noted that this is 3.4% not .034%):
H > O * 1.034 AND H1 > O1 * 1.034 AND H2 > O2 * 1.034 AND H3 > O3 * 1.034 AND H4 > O4 * 1.034 AND H5 > O5 * 1.034 AND H6 > O6 * 1.034 AND AVGV29 > 800 AND C > 3.6 AND C < 200
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF)
Using EasyScan to find stocks that meet your own criteria
PCF Formula Descriptions
-Bruce Personal Criteria Formulas TC2000 Support Articles
|