True Strength Index

This is the place to discuss EdgeRater Chart Script

Moderator: Chris White

Post Reply
henry1224
Posts: 457
Joined: Wed Feb 24, 2016 12:04 pm

True Strength Index

Post by henry1224 »

Under the Parameters tab

LongL Double 25 5 100
Short L Double 13 2 100
SignalL Double 8 2 100


here is the rest of the formula


diff:= close - Ref(close,1);
doubleSmoothedAbsDiff:= EMA( EMA( Abs(diff), longL), shortL);

TSI: if (doubleSmoothedAbsDiff == 0 ,0,
(( EMA( EMA( diff, longL), shortL)) / doubleSmoothedAbsDiff)*100),Colorstick;

FillRgn(TSI>0,0,TSI),Brush#50008000;
FillRgn(TSI<0,0,TSI),Brush#50800000;

Signal: EMA( TSI, signalL),Width2,ColorBlue;

UZ :MA(TSI, 30) + (1.3185 * StD (TSI, 30)),Width2,ColorViolet;
LZ: MA(TSI, 30) - (1.3185 * StD (TSI, 30)),Width2,ColorViolet;

ZeroLine : 0,ColorBlack;
Post Reply