Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 1/5/2008 Posts: 117
|
I would appreciate help in writing PCF's for the following:
1. When the daily Hull moving average 21 of RSI 14 changes from going down to going up.
2. When the daily Hull moving average 21 of RSI 14 changes from going up to going down.
Thanks in advance!
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
QUOTE (Gary3302) When the daily Hull moving average 21 of RSI 14 changes from going down to going up.
The following assumes the RSI is Wilder's smoothed and that you are using TC2000 v17.
SGN(HAVG(WRSI14, 21) - HAVG(WRSI14.1, 21)) > SGN(HAVG(WRSI14.1, 21) - HAVG(WRSI14.2, 21))
QUOTE (Gary3302) When the daily Hull moving average 21 of RSI 14 changes from going up to going down.
SGN(HAVG(WRSI14, 21) - HAVG(WRSI14.1, 21)) < SGN(HAVG(WRSI14.1, 21) - HAVG(WRSI14.2, 21))
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 1/5/2008 Posts: 117
|
Thanks Bruce, very much appreciated.
|
|
Registered User Joined: 1/5/2008 Posts: 117
|
Bruce, my fault for not being more clear. I am using TC 2000 V 17 but I meant the RSI 14 (not Wilder's) listed in the indicators. If you could re do the PCF's for that I would appreciate it. Thanks
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
QUOTE (Gary3302) When the daily Hull moving average 21 of RSI 14 changes from going down to going up.
SGN(HAVG(RSI14, 21) - HAVG(RSI14.1.1, 21)) > SGN(HAVG(RSI14.1.1, 21) - HAVG(RSI14.1.2, 21))
QUOTE (Gary3302) When the daily Hull moving average 21 of RSI 14 changes from going up to going down.
SGN(HAVG(RSI14, 21) - HAVG(RSI14.1.1, 21)) < SGN(HAVG(RSI14.1.1, 21) - HAVG(RSI14.1.2, 21))
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 1/5/2008 Posts: 117
|
Thanks Bruce. Nice of you to respond back after hours so I didn't have to wait until tomorrow. Thank You !
|
|
Registered User Joined: 1/5/2008 Posts: 117
|
Bruce, hate to bother you again but could you do the last PCF's on a weekly time frame also.
Thanks
|
|
Registered User Joined: 6/30/2017 Posts: 1,227
|
Gary, generally speaking PCFs are time frame independent. You can't specify timeframes in the PCF language.
Plot the above PCFs for one ticker on daily and weekly charts side-by-side and you should see what I mean.
The only exception I can think of is if you want to look at a weekly chart, but use 5 daily bars of data each week instead of the 1 weekly bar of data each week. Some folks do that when they have a specific reason. Then you'd multiply most of the numbers in the PCF by 5, but Bruce can help you with that if that's what you're looking for.
But most of the time, PCFs are the same regardless of the time frame you're looking at.
But that's just me. :)
|
|
Registered User Joined: 1/5/2008 Posts: 117
|
Thanks
|
|
Registered User Joined: 6/30/2017 Posts: 1,227
|
Happy to help.
|
|
Guest-1 |