Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 1/5/2008 Posts: 117
|
I would help writing PCF's for the following:
1. When the high of today's bar reaches a new 10 day high and the close of today's bar is in the bottom 25% of the range.
2. When the low of today's bar reaches a new 10 day low and the close of today's bar is in the top 25% of the range.
Thanks in advance.
|
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
H > MAXH10.1 and (C-L) / (H-L) <= .25
L < MINL10.1 and (C-L) / (H-L) >= .75
|
|
Registered User Joined: 1/5/2008 Posts: 117
|
Thanks
|
|
Registered User Joined: 1/5/2008 Posts: 117
|
For other users that might be interested in using formula #2 you will want to use the below PCF. The greater than/less than sign was flipped in the response.
L < MINL10.1 and (C-L) / (H-L) >= .75
|
|
Registered User Joined: 11/5/2013 Posts: 9
|
hi bruce
could u nhelp with following pcf
high of first candle (opening candle)on a 5 min chart is equal to high of yesterday on daily chart
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
There really isn't a way to write an automated formula for this. During the first 5 min bar of the trading day the formula on a 5-minute chart would be:
H = MAXH78.1
Druing the second 5 minute bar of the day the formula would be:
H1 = MAXH78.2
During the third 5 minute bar of the day of the formula would be:
H2 = MAXH78.3
Etc....
PCF Help
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Guest-1 |