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 ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
jujupee for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | _SECTION_BEGIN ( "TSI" ); r = Param ( "TSI period 'R':" , 7, 1, 100, 1 ); s = Param ( "TSI period 'S':" , 27, 1, 100, 1 ); u = Param ( "TSI period 'U':" , 1, 1, 100, 1 ); sig = Param ( "Signal period:" , 7, 1, 100, 1 ); Mtm = C - Ref ( C , -1 ); AbsMtm = abs ( Mtm ); Num_T = EMA ( EMA ( EMA ( Mtm, r ), s ), u ); Den_T = EMA ( EMA ( EMA ( AbsMtm, r ), s ), u); TSI = 100 * Nz ( Num_T / Den_T ); TSIL = 100 * Nz ( Num_T / Den_T ); //Green TSIL Line=Rising; Red TSIL Line=Falling col = IIf ( TSIL > Ref ( TSIL, -1 ), colorGreen , colorRed ); Plot ( TSIL, "TSI(" +r+ "," +s+ "," +u+ ")" , col, styleLine | styleThick ); //Green EMA TSI,sig Line=Rising; Red EMA TSI,sig Line=Falling col = IIf ( EMA (TSI,sig) > Ref ( EMA (TSI,sig), -1 ), colorGreen , colorRed ); Plot ( EMA (TSI,sig), "" , col, styleThick ); Plot ( TSI, "TSI(" +r+ "," +s+ "," +u+ ")" , ParamColor ( "Color" , colorBlueGrey ), ParamStyle ( "Histogram style" , styleThick | styleHistogram | styleNoLabel , maskHistogram ) ); Plot (0, "ZeroLine" , ParamColor ( "ColorZero" , colorBlueGrey ), styleLine ); Title = FullName (); _SECTION_END (); |