Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
TSI for Amibroker (AFL)
This is a tweaked TSI from William Blau, plotted in a different way.
Gives very nice signals, when both lines are crossing!
Screenshots
Similar Indicators / Formulas
Indicator / Formula
_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();
9 comments
Leave Comment
Please login here to leave a comment.
Back
this param is original from William Blau
Hi baby.learn.to.trade
As I mentioned, this one is tweaked!
This one is calculated with 3 variables…
Let me know what you think about it!
Regards,
Ceurami
hi,
how to plot arrows in this afl
“astrotrade”, try this:
Try this:
dear sir morgen
the formula aditions for buy and sell and plot arrows shows syntex error. can u pl check and post the entire formula ?
with regards
ravi
qatar
// Add this to TSI FORMULA code
Error is due to TSI Period R, S, U not defined, any solution where to initiatlise that
WATCH COLOURED MACD …. Search it (Best one)