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

Bat Day for Amibroker (AFL)
atula146
almost 13 years ago
Amibroker (AFL)

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

enjoy

Screenshots

Similar Indicators / Formulas

Febo RSI ..real indicator
Submitted by abhinavsingh over 12 years ago
Trading Volume Statistic
Submitted by tuanstock1 over 9 years ago
Ergodic Oscillator
Submitted by dljtrader over 13 years ago
3 Days Track
Submitted by janet0211 almost 14 years ago
Chande Momentum Oscillator
Submitted by klimpek over 13 years ago
BoH Risk Aversion Indicator
Submitted by genkumag over 12 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("BAT DAY");
MAtp1 = 10; 
MAtp2 = 40; 
RStp = 5; 
RSsmoothtp = 5; 

dif = EMA(C,MAtp1) - EMA(C,MAtp2); 
Change = dif - Ref(dif,-1); 

Z = Sum(IIf(Change >0,Change,0),Rstp); 
Y = Sum(IIf(Change < 0, abs(Change),0),RStp); 
YTemp = IIf(y ==0, 0.00001,y); 
RS = Z/YTemp; 
RSS = MA(100 - (100/(1 +RS)), RSsmoothtp); 
Plot(RSS,"Relative Spread Strenghth",colorRed,styleLine);
_SECTION_END();

_SECTION_BEGIN("BAT DAY NPH");
MAtp1 = 4; 
MAtp2 = 12; 
RStp = 3; 
RSsmoothtp = 3; 

dif = EMA(C,MAtp1) - EMA(C,MAtp2); 
Change = dif - Ref(dif,-1); 

Z = Sum(IIf(Change >0,Change,0),Rstp); 
Y = Sum(IIf(Change < 0, abs(Change),0),RStp); 
YTemp = IIf(y ==0, 0.00001,y); 
RS = Z/YTemp; 
RSS = MA(100 - (100/(1 +RS)), RSsmoothtp); 
Plot(RSS,"Relative Spread Strenghth",colorGreen,styleLine);
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back