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

Modified dahl oscillator for Amibroker (AFL)
realkaka
almost 14 years ago
Amibroker (AFL)

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

Modified formula from original DAHL with 14 simple average. Used TEMA instead of simple MA, added parameters and optimization. Good also for trading system (as indicator to be used with 10 and 90 levels also).

Author: Hans

Similar Indicators / Formulas

Stochastic (Generic) for Amibroker
Submitted by 123flex456 almost 13 years ago
Trend Trigger Factor
Submitted by M4RC68 almost 14 years ago
MACD
Submitted by sal over 13 years ago
Combination MACD RMO ICHIMOKU
Submitted by dovanquang0404 almost 11 years ago
best rsi signal amajeed
Submitted by haman almost 11 years ago
Didi Index
Submitted by moapereira over 12 years ago

Indicator / Formula

Copy & Paste Friendly
/*Dahl Oscillator TS modificato (TEMA) */
 
P=14;Q=34;R=9;AV=6;
p = Optimize("Period",P,3,25,1); 
q = Optimize("Q ",Q,20,36,2); 
//r = Optimize("R lookback",R,5,25,1); 
Av = Optimize("S Average",AV,2,30,2); 

M=MA(C,q);
Dahl = TEMA(	( M - Ref(M,-p)- LLV (M - Ref(M,-p),r) )/(HHV(M - Ref(M,-p),r)-(LLV(M - Ref(M,-p),r))),r)*100 ;

Buy = Cover = Cross (dahl, MA(Dahl,av));
Short = Sell = Cross (MA(Dahl,av), dahl);


GraphXSpace=2;
Plot(Dahl,"Dahl",4,4); 
Plot(MA(Dahl,av),"Avg",7,4);

1 comments

1. thangnd.1211

very good trading system, thank you so much !

Leave Comment

Please login here to leave a comment.

Back