How & where do I learn about PCF's??

I jsut recieved my tc2000 package and would like to know how to creat pcf?

I would like to create a search for stocks that are 10% or less away from new highs??

Anyone :)
 
Here is a PCF that tests for today's close 10% or less tan the highest price of the last 10 trading days:

C >= (MAXH10 * .9)

If you want to screen out stocks that printed a new high today:

C >= (MAXH10 * .9) AND MAXH2 < MAXH10
 
Quote from dgabriel:

Here is a PCF that tests for today's close 10% or less tan the highest price of the last 10 trading days:

C >= (MAXH10 * .9)

If you want to screen out stocks that printed a new high today:

C >= (MAXH10 * .9) AND MAXH2 < MAXH10

What would I change in this pcf so that I search for stocks 10% away from 52 week high?

An another for 10% away from an alltime high?
 
Back
Top