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

Double Stochastic for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
oscillator, amibroker

Another “version” of stochastic indicator to get smoothed oscillation

Screenshots

Similar Indicators / Formulas

Debu Market Efficiency Ratio
Submitted by agent301 over 11 years ago
MACD (new timing)
Submitted by tigernifty over 11 years ago
3 Days Track
Submitted by janet0211 almost 14 years ago
KILL THE OPERATOR MACD
Submitted by prasadmuni over 11 years ago
%R ++
Submitted by reb almost 14 years ago
DMI Spread
Submitted by pipstar almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("DoubleStochastic");
pds = 10; /*Periods */
/*pds = Optimize("pds",13,2,20,1); */
slw = 3; /*Slowing for Full Stoch%K*/
/*slw = Optimize("slw",3,1,14,1); */
slwd = 3; /*Slowing for Full Stoch%D*/
/*slwd = Optimize("slwd",3,1,14,1); */
ob = 85; /*Overbought */
/*ob = Optimize("ob",83,65,88,1); */
os = 15; /*Oversold */
/*os = Optimize("os",24,20,50,1); */

FSK = 100*(C-LLV(L,pds))/(HHV(H,pds)-LLV(L,pds)); // FASTSTOCHK

FLSK = EMA( FSK, slw ); // FULLSTOCHK

DSK = ((FLSK-LLV(FLSK,pds))/(HHV(FLSK,pds)-LLV(FLSK,pds))) * 100;

DLSK = EMA( DSK, slwd ); // FULLSTOCHD

Plot( MA( DLSK, 3 ), "MA-3"+_PARAM_VALUES(), ParamColor( "ColorD", colorRed ), styleDashed);
Plot( DLSK, "Stochastic %D"+_PARAM_VALUES(), ParamColor( "ColorK", colorBlue ));
Plot(Ob,"Overbought Level",colorRed, styleDashed);
Plot(Os,"Oversold Level",colorGreen, styleDashed); 
_SECTION_END();

1 comments

1. ag82

Sir,
Can you provide crossover with buy sell short cover arrows in this afl

Leave Comment

Please login here to leave a comment.

Back