Registered User Joined: 2/6/2007 Posts: 9
|
1. I want to scan daily for stocks where the 5 period moving average is crossing over the 20 period moving average.
2. I want to scan daily for the 14 period ADX is 30 or greater and the price touches the 20 period moving average.
I am very new to telecharts...I have also purchased the backscanner but I havent figured everything out yet...just needing some direction.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
QUOTE (grantgoode) I am very new to telecharts... You may wish to review the following:
If you are new to TeleChart READ THIS FIRST!
QUOTE (grantgoode) I want to scan daily for stocks where the 5 period moving average is crossing over the 20 period moving average. Please try whichever of the following seems most appropriate:
Simple 5 xUp 20:
AVGC5 > AVGC20 AND AVGC5.1 <= AVGC20.1
Simple 5 xDown 20:
AVGC5 < AVGC20 AND AVGC5.1 >= AVGC20.1
Simple 5 xEither 20:
SGN(AVGC5 - AVGC20) - SGN(AVGC5.1 - AVGC20.1) <> 0
Exponential 5 xUp 20:
XAVGC5 > XAVGC20 AND XAVGC5.1 <= XAVGC20.1
Exponential 5 xDown 20:
XAVGC5 < XAVGC20 AND XAVGC5.1 >= XAVGC20.1
Exponential 5 xEither 20:
SGN(XAVGC5 - XAVGC20) - SGN(XAVGC5.1 - XAVGC20.1) <> 0
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF) Moving Average PCF Templates Things to check if your moving averages don't "seem right" or "seem to match" Handy PCF example formulas to help you learn the syntax of PCFs!
QUOTE (grantgoode) I want to scan daily for the 14 period ADX is 30 or greater and the price touches the 20 period moving average. You will need to use BackScanner for this. Please download the attached .bscan file to:
\My Documents\Blocks Files\Tool Parts\BackScan
Once downloaded, you should be able to select BackScan | Open BackScan | My Computer to access it. You may wish to review the following:
ADX Learn how to use the forums: post a new topic, reply, Search existing topics Customizing with Properties Your First 3 Block DiagramsAttachments: grantgoode19934.bscan - 17 KB, downloaded 578 time(s).
-Bruce Personal Criteria Formulas TC2000 Support Articles
|