Registered User Joined: 6/1/2006 Posts: 48
|
Is there a PCF formula I can use for Stochastics:
1) Weekly stochastics below 30
2) Dsaily stochastics below 30 and turning up?
My stochastics are set to `14, 3, 3
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
QUOTE (BRGZZ) Weekly stochastics below 30
If you are interested in the Simple SK:
(STOC70 + STOC70.1.5 + STOC70.1.10) / 3 < 30
If you are interested in the Simple SD:
(STOC70 + 2 * STOC70.1.5 + 3 * STOC70.1.10 + 2 * STOC70.1.15 + STOC70.1.20) / 9 < 30
If you are interested in the Exponential SK:
.500488758553275 * (STOC70 + .5 * (STOC70.1.5 + .5 * (STOC70.1.10 + .5 * (STOC70.1.15 + .5 * (STOC70.1.20 + .5 * (STOC70.1.25 + .5 * (STOC70.1.30 + .5 * (STOC70.1.35 + .5 * (STOC70.1.40 + .5 * (STOC70.1.45)))))))))) < 30
If you are interested in the Exponential SD:
.250229091575539 * (STOC70 + .5 * (2 * STOC70.1.5 + .5 * (3 * STOC70.1.10 + .5 * (4 * STOC70.1.15 + .5 * (5 * STOC70.1.20 + .5 * (6 * STOC70.1.25 + .5 * (7 * STOC70.1.30 + .5 * (8 * STOC70.1.35 + .5 * (9 * STOC70.1.40 + .5 * (10 * STOC70.1.45 + .5 * (11 * STOC70.1.50 + .5 * (12 * STOC70.1.55 + .5 * (13 * STOC70.1.60))))))))))))) < 30
QUOTE (BRGZZ) Daily stochastics below 30 and turning up?
If you are interested in the Simple SK:
STOC14.3 < 30 AND STOC14.3 > STOC14.3.1
If you are interested in the Simple SD:
AVG(STOC14.3,3) < 30 AND AVG(STOC14.3,3) > AVG(STOC14.3.1,3)
If you are interested in the Exponential SK:
XAVG(STOC14,3) < 30 AND XAVG(STOC14,3) > XAVG(STOC14.1.1,3)
If you are interested in the Exponential SD:
.500488758553275 * (XAVG(STOC14,3) + .5 * (XAVG(STOC14.1.1,3) + .5 * (XAVG(STOC14.1.2,3) + .5 * (XAVG(STOC14.1.3,3) + .5 * (XAVG(STOC14.1.4,3) + .5 * (XAVG(STOC14.1.5,3) + .5 * (XAVG(STOC14.1.6,3) + .5 * (XAVG(STOC14.1.7,3) + .5 * (XAVG(STOC14.1.8,3) + .5 * (XAVG(STOC14.1.9,3))))))))))) < 30 AND XAVG(STOC14,3) > .500488758553275 * (XAVG(STOC14.1.1,3) + .5 * (XAVG(STOC14.1.2,3) + .5 * (XAVG(STOC14.1.3,3) + .5 * (XAVG(STOC14.1.4,3) + .5 * (XAVG(STOC14.1.5,3) + .5 * (XAVG(STOC14.1.6,3) + .5 * (XAVG(STOC14.1.7,3) + .5 * (XAVG(STOC14.1.8,3) + .5 * (XAVG(STOC14.1.9,3) + .5 * (XAVG(STOC14.1.10,3)))))))))))
You may wish to review the following:
Understanding Stochastics
How to create a Personal Criteria Forumula (PCF)
PCF Formula Descriptions
Cascades of Moving Averages
Handy PCF example formulas to help you learn the syntax of PCFs!
-Bruce Personal Criteria Formulas TC2000 Support Articles
|