Registered User Joined: 12/22/2006 Posts: 23
|
Trying to determine when the Stoch makes a reversal to upside, as in today's and day before yesterday's values were higher than yesterday (like a V shape on chart).
Tried: (STOC5.3.2 > STOC5.3.1 ) AND (STOC5.3 > STOC5.3.1 )
Didn't work.
Any help appreciated.
thanks,
Steve
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
It works just fine if you are comparing it to a Stochastic with the following settings:
Period: 5 SK Period: 3 SD Period: 1 Average Type: Simple
If you are using a Stochastic with the following settings:
Period: 5 SK Period: 3 SD Period: 1 Average Type: Exponential
Please try the following instead:
XAVG(STOC5.1.2,3) > XAVG(STOC5.1.1,3) AND XAVG(STOC5,3) > XAVG(STOC5.1.1,3)
You may wish to review the following:
How to create a Personal Criteria Forumula (PCF) Handy PCF example formulas to help you learn the syntax of PCFs! Understanding Stochastics
-Bruce Personal Criteria Formulas TC2000 Support Articles
|