Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Normalized difference for Amibroker (AFL)
Normalized difference for pair trading (like z-score)
Similar Indicators / Formulas
Indicator / Formula
_SECTION_BEGIN("normalized_diff");
Ticker = ParamStr("Short ticker", "?");
tickersc = Foreign( ticker, "C");
ticker2 = C;
d = abs(C/tickersc);
p = Param("Period",10);
nd = (d - MA(d,p)) / MA(d,p);
Plot(nd,"normalized difference",colorRed,styleLine);
Plot(0,"",colorBlue,styleLine|styleNoLabel);
_SECTION_END();0 comments
Leave Comment
Please login here to leave a comment.
Back