Registered User Joined: 7/23/2005 Posts: 8
|
Hi, I need help making a pcf with these parameters. I would like the following time frames 1 min, 5 min, 15 min, 30 min, hourly, daily, weekly, and monthly to have each of the past five candlesticks/bars to be up/increase in price for the first pcf and for a separate pcf to have all the candlesticks/bars red/down for each of the time frames all in one pcf for green bars and a totally separate pcf for red/down bars. Thank you.
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Personal Criteria Formulas are based entirely on the 20-Minute delayed Daily data. While it is sometimes possible to create formulas using Daily data that will check for something happening in a longer Time Frame, it is only rarely possible to determine what happened in an intraday Time Frame using only Daily data.
Daily increased each of the last 5-Bars:
C > C1 AND C1 > C2 AND C2 > C3 AND C3 > C4 AND C4 > C5
Daily decreased each of the last 5-Bars:
C < C1 AND C1 < C2 AND C2 < C3 AND C3 < C4 AND C4 < C5
Weekly increased each of the last 5-Bars:
C > C5 AND C5 > C10 AND C10 > C15 AND C15 > C20 AND C20 > C25
Weekly decreased each of the last 5-Bars:
C < C5 AND C5 < C10 AND C10 < C15 AND C15 < C20 AND C20 < C25
Monthly increased each of the last 5-Bars:
C > C21 AND C21 > C42 AND C42 > C63 AND C63 > C84 AND C84 > C105
Monthly decreased each of the last 5-Bars:
C < C21 AND C21 < C42 AND C42 < C63 AND C63 < C84 AND C84 < C105
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF)
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|