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

Discussion in 'Trading Software' started by c_verm, Jan 24, 2004.

  1. c_verm

    c_verm

    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 :)
     
  2. MrX

    MrX

  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
     
  4. c_verm

    c_verm

    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?