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

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

Based on the the excel file made by David Vardi of http://cssanalytics.wordpress.com

Please check his blog for much more good quantitative ideas.

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
/*
Double Stochastic
------------------
Based on David Vardi's Idea:
http://cssanalytics.wordpress.com/2009/09/11/calculation-dv-super-smoothed-double-stochastic-oscillator/
Coded by: Graves. Date: 18.9.2009.

You can change the lookback period and find the optimal value for you.

*/

//DS Code

Lookback=Param("Look Back period",10,2,100,1);

Fo=(C-LLV(L,lookback))/(HHV(H,lookback)-LLV(L,lookback));
Go=(fo-LLV(fo,lookback))/(HHV(fo,lookback)-LLV(fo,lookback));
Ho=MA(go,3);
Io=0.85*Ho+0.15*Ref(Ho,-1);

// End of DS Code

Plot(Io, "DoubleStoc",ParamColor( "Color", colorCycle ),styleLine);

0 comments

Leave Comment

Please login here to leave a comment.

Back