Some readers asked me for the AFL-code (Amibroker) of the Trend Strength Index – Indicator.
.
.
.
function TSI()
{
Ratio = abs(Close - Ref(Close,-10)) / ATR(10) ;
Result = MA(MA(Ratio,10),100);
return Result;
}
Plot(TSI(),"TSI",colorblack);

[...] dax ← TSI: Amibroker AFL – Code [...]