Registered User Joined: 4/29/2005 Posts: 9
|
can you please tell me what the pcf is for 10 day ma crossing over the 30 day ma i get a syntax error message
|
Worden Trainer
Joined: 10/1/2004 Posts: 18,819
|
((AVGC10>AVGC30)AND(AVGC30.1>AVGC10.1)) OR ((AVGC10<AVGC30)AND(AVGC30.1<AVGC10.1))
- Craig Here to Help!
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Try one of the following:
SMA10 Thru SMA30: SGN(AVGC10-AVGC30)-SGN(AVGC10.1-AVGC30.1)<>0
EMA10 Thru EMA20: SGN(XAVGC10-XAVGC30)-SGN(XAVGC10.1-XAVGC30.1)<>0
You may also want to view the following videos and topics:
How to create a Personal Criteria Forumula (PCF) Create PCFs and EasyScans to find moving average crossovers Handy PCF example formulas to help you learn the syntax of PCFs! Learn how to use the forums: post a new topic, reply, Search existing topics Understanding Moving Averages - Part I, The Basics Understanding Moving Averages - Part II, Using Multiple Averages Understanding MACD
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 4/29/2005 Posts: 9
|
thank you
|