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

Strength & weakness for Amibroker (AFL)

Rating:
4 / 5 (Votes 3)
Tags:
amibroker, exploration

Computes Strength and Weakness of stocks over a 20-day period through explorer.

Similar Indicators / Formulas

GapUp and Bearish Close (Reversal) _Daily
Submitted by indraji2001 almost 10 years ago
Three Day Balance Points
Submitted by nvkha almost 10 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji over 14 years ago
DIX50,20,10
Submitted by morgen almost 14 years ago
4-Day-Range Switch
Submitted by santho_sd almost 14 years ago

Indicator / Formula

Copy & Paste Friendly
//  Measures the strength in a stock over a 20 day period, generates a 20-day
//  rate of change and a yearly rate of change.

//Computes Strength and Weakness of stocks over a 20-day period.



Lag= Ref(Close,-21);
Lag =  Lag + (Ref(Close,-20)-Lag)/20;
Lag =  Lag + (Ref(Close,-19)-Lag)/20;
Lag =  Lag + (Ref(Close,-18)-Lag)/20;
Lag =  Lag + (Ref(Close,-17)-Lag)/20;
Lag =  Lag + (Ref(Close,-16)-Lag)/20;
Lag =  Lag + (Ref(Close,-15)-Lag)/20;
Lag =  Lag + (Ref(Close,-14)-Lag)/20;
Lag =  Lag + (Ref(Close,-13)-Lag)/20;
Lag =  Lag + (Ref(Close,-12)-Lag)/20;
Lag =  Lag + (Ref(Close,-11)-Lag)/20;
Lag =  Lag + (Ref(Close,-10)-Lag)/20;
Lag =  Lag + (Ref(Close,-9)-Lag)/20;
Lag =  Lag + (Ref(Close,-8)-Lag)/20;
Lag =  Lag + (Ref(Close,-7)-Lag)/20;
Lag =  Lag + (Ref(Close,-6)-Lag)/20;
Lag =  Lag + (Ref(Close,-5)-Lag)/20;
Lag =  Lag + (Ref(Close,-4)-Lag)/20;
Lag =  Lag + (Ref(Close,-3)-Lag)/20;
Lag =  Lag + (Ref(Close,-2)-Lag)/20;
Lag =  Lag + (Ref(Close,-1)-Lag)/20;
AV = Lag;

pctROC = (Close-AV)/AV;
//365.25 / 20 * (P-AV20)/AV20
YROC = (Close-AV)/AV*100/20 * 365.25; 



Y = Volume> 200000;
Filter = Y AND Close > 5.00;// AND Retrace;
AddColumn(pctROC, "(P-AV)/AV", 1.2 ); 
AddColumn(YROC, "Yearly % ROC Filter", 1.2 ); 

0 comments

Leave Comment

Please login here to leave a comment.

Back