Registered User Joined: 10/7/2004 Posts: 17
|
Is their a formula (indicator) for the premier stochastic oscillator thats in S & C august 2008 that will go in TeleChart. You have it in blocks.
Thanks
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
If you are using the "default settings" of StochLength = 8 and Period = 25, you should be able to create the Premier Stochastic as a Custom Indicator:
Select Chart Template | Add Indicator | Indicator.
-Visible: Checked
-Center Zero Line: Checked
-Plot using price scale: Unchecked
-Smoothing Average: 1
-Smoothing Type: Doesn't matter (because the Smoothing Average is 1)
-Indicator Formula: (EXP((.333559032545198 * (XAVG(STOC8,5) + 2 / 3 * (XAVG(STOC8.1.1,5) + 2 / 3 * (XAVG(STOC8.1.2,5) + 2 / 3 * (XAVG(STOC8.1.3,5) + 2 / 3 * (XAVG(STOC8.1.4,5) + 2 / 3 * (XAVG(STOC8.1.5,5) + 2 / 3 * (XAVG(STOC8.1.6,5) + 2 / 3 * (XAVG(STOC8.1.7,5) + 2 / 3 * (XAVG(STOC8.1.8,5) + 2 / 3 * (XAVG(STOC8.1.9,5) + 2 / 3 * (XAVG(STOC8.1.10,5) + 2 / 3 * (XAVG(STOC8.1.11,5) + 2 / 3 * (XAVG(STOC8.1.12,5) + 2 / 3 * (XAVG(STOC8.1.13,5) + 2 / 3 * (XAVG(STOC8.1.14,5) + 2 / 3 * (XAVG(STOC8.1.15,5) + 2 / 3 * (XAVG(STOC8.1.16,5) + 2 / 3 * (XAVG(STOC8.1.17,5))))))))))))))))))) - 50) * .1) - 1) / (EXP((.333559032545198 * (XAVG(STOC8,5) + 2 / 3 * (XAVG(STOC8.1.1,5) + 2 / 3 * (XAVG(STOC8.1.2,5) + 2 / 3 * (XAVG(STOC8.1.3,5) + 2 / 3 * (XAVG(STOC8.1.4,5) + 2 / 3 * (XAVG(STOC8.1.5,5) + 2 / 3 * (XAVG(STOC8.1.6,5) + 2 / 3 * (XAVG(STOC8.1.7,5) + 2 / 3 * (XAVG(STOC8.1.8,5) + 2 / 3 * (XAVG(STOC8.1.9,5) + 2 / 3 * (XAVG(STOC8.1.10,5) + 2 / 3 * (XAVG(STOC8.1.11,5) + 2 / 3 * (XAVG(STOC8.1.12,5) + 2 / 3 * (XAVG(STOC8.1.13,5) + 2 / 3 * (XAVG(STOC8.1.14,5) + 2 / 3 * (XAVG(STOC8.1.15,5) + 2 / 3 * (XAVG(STOC8.1.16,5) + 2 / 3 * (XAVG(STOC8.1.17,5))))))))))))))))))) - 50) * .1) + 1)
You may wish to review the following:
Plotting Custom Indicators with Examples
PCF Formula Descriptions
Handy PCF example formulas to help you learn the syntax of PCFs!
Cascades of Moving Averages
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
Registered User Joined: 1/1/2005 Posts: 2,645
|
Bruce,
I am sure you know this, but the Inverse Fisher Transform can be written in the equivalent forms:
Form 1:
(EXP(2*x )-1)/(EXP(2*x)+1)
Form 2:
TANH( x )
Form 3:
1 - 2/(1 + EXP(2*x))
The use of Form 2 or Form 3 would reduce the length of your PCF by about half.
I am not implying that you should re-write the PCF.
Thanks,
Jim Murphy
|