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 Amibroker (AFL)
kaiji
about 14 years ago
Amibroker (AFL)

Rating:
4 / 5 (Votes 4)
Tags:
oscillator, trading system, amibroker

In “Premier Stochastic Oscillator” in this issue, Lee Leibfarth presents a fast-reacting indicator derived from the classic stochastic indicator.

Screenshots

Similar Indicators / Formulas

Rahul Mohindar Oscillator (RMO)
Submitted by kaiji over 14 years ago
Price Oscillator
Submitted by ariful_islam over 13 years ago
1 hour stoch
Submitted by siddhisagar over 13 years ago
Simple Chaikin Buy Sell
Submitted by jachyuen over 12 years ago
Nj demand and supply
Submitted by njethva over 11 years ago
Heikin-Ashi Candles Oscillator for Long term
Submitted by NTA over 11 years ago

Indicator / Formula

Copy & Paste Friendly
stochlen = Param("Stoch Length", 8, 3, 30 );
smoothlen = Param("Smooth Period", 25, 5, 100 );
sk = StochK(stochlen, 1 );
len = sqrt( smoothlen );
nsk = 0.1 * (sk - 50 );
ss = EMA( EMA( nsk, len ), len);
expSS = exp( ss );
pso = ( expSS - 1 )/( expSS + 1 );
Plot( pso, "pso", colorBlack, styleThick );
Plot( pso, "", IIf( pso < 0, colorRed, colorBlue ), styleHistogram );
Plot( 0.2, "", colorBlue );
Plot( 0.9, "", colorBlue );
Plot( -0.2, "", colorRed );
Plot( -0.9, "", colorRed );

0 comments

Leave Comment

Please login here to leave a comment.

Back