C c_verm Jan 24, 2004 #1 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
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
D dgabriel Jan 24, 2004 #3 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
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
C c_verm Jan 28, 2004 #4 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 More... 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?
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 More... 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?