Registered User Joined: 10/26/2010 Posts: 32
|
I am trying to create a formula such that (1) The last price is at least 1% greater than yesterday's close, (2) The last price is within .5% of the high for the day and (3) The last price is within 5% of the 52 week high. I would like to run this scan realtime.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
The formula could be written as:
C >= 1.01 * C1 AND C >= .995 * H AND C >= .95 * MAXH252
As we have previously discussed, the Personal Criteria Formulas and EasyScans in TeleChart always use the 20-Minute delayed Daily data. It would be possible to use the formula given in a Custom Percent True Indicator and use it as an Indicator Sort. This would be limited to the top 200 symbols in the WatchList however.
Visually Backtesting Specific Symbols
Real time indicator sorting (available at the Platinum level)
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|