Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Premier Stochastic Oscillator for Metastock
kaiji
about 14 years ago
Metastock

Rating:
5 / 5 (Votes 2)
Tags:
oscillator, trading system, metastock

In “Premier Stochastic Oscillator” in this issue, Lee Leibfarth describes the calculation of his new indicator and a system using it. The MetaStock formulas and instructions for adding them to MetaStock are in the formula

Similar Indicators / Formulas

Rahul Mohindar Osc (RMO)
Submitted by kaiji over 14 years ago
Guppy MMA Divergence Oscillator
Submitted by kaiji about 14 years ago
3-10 Oscillator
Submitted by mayurs over 11 years ago
SAR buy sell arrow
Submitted by mgandhi443 over 11 years ago
Bull and Bear Balance Indicator
Submitted by kaiji about 14 years ago
Relative Vigor Index
Submitted by vargasc1 almost 13 years ago

Indicator / Formula

Copy & Paste Friendly
{Credit for the formula goes to William Golson}

{1. In the Tools menu, select Indicator Builder
2. Click New to open the Indicator Editor for a new indicator
3. Type the name of the formula: "Premier Stochastic"
4. Click in the larger window and type in the formula as follows:}
x:=Input("stochastic length",2,25,8);
y:=Input("periods",1,100,25);
len:=LastValue(Sqrt(y));
nsto:= 0.1 * (Stoch(x,1)-50);
ssto:=Mov( Mov( nsto, len, E), len, E);
(Exp(ssto)-1)/(Exp(ssto)+1)
{5. Click OK to close the Indicator Editor.
    To recreate the premier stochastic system:
1. Select Tools > the Enhanced System Tester
2. Click New
3. Enter the name, "Premier Stochastic Strategy"
4. Select the Buy Order tab and enter the following formula:}
x:=8;
y:=25;
len:=LastValue(Sqrt(y));
nsto:= 0.1 * (Stoch(x,1)-50);
ssto:=Mov( Mov( nsto, len, E), len, E);
psto:=(Exp(ssto)-1)/(Exp(ssto)+1);
Cross(.9, psto) OR Cross(.2, psto)
{5. Select the Sell Order tab and enter the following formula:}
x:=8;
y:=25;
len:=LastValue(Sqrt(y));
nsto:= 0.1 * (Stoch(x,1)-50);
ssto:=Mov( Mov( nsto, len, E), len, E);
psto:=(Exp(ssto)-1)/(Exp(ssto)+1);
Cross(psto,-0.9) OR Cross(psto,-0.2)
{6. Select the Sell Short Order tab and enter the following formula:}
x:=8;
y:=25;
len:=LastValue(Sqrt(y));
nsto:= 0.1 * (Stoch(x,1)-50);
ssto:=Mov( Mov( nsto, len, E), len, E);
psto:=(Exp(ssto)-1)/(Exp(ssto)+1);
Cross(psto,-0.9) OR Cross(psto,-0.2)
{7. Select the Buy To Cover Order tab and enter the following formula:}
x:=8;
y:=25;
len:=LastValue(Sqrt(y));
nsto:= 0.1 * (Stoch(x,1)-50);
ssto:=Mov( Mov( nsto, len, E), len, E);
psto:=(Exp(ssto)-1)/(Exp(ssto)+1);
Cross(.9, psto) OR Cross(.2, psto)
{8. Click OK to close the system editor.}

0 comments

Leave Comment

Please login here to leave a comment.

Back