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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | _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