True Strength Index TSI

True Strength Index TSI

The true strength index (TSI) is a technical indicator used in the analysis of financial markets that attempts to show both trend direction and overbought/oversold conditions. It was first published William Blau in 1991. The indicator uses moving averages of the underlying momentum of a financial instrument. Momentum is considered a leading indicator of price movements, and a moving average characteristically lags behind price. The TSI combines these characteristics to create an indication of price and direction more in sync with market turns than either momentum or moving average. (source: wikipedia)

 

Share this

Risk disclosure:

No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.

ProRealTime ITF files and other attachments : How to import ITF files into ProRealTime platform?

PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials

  1. Martial Schaff • 10/26/2015 #

    Hello,
    The formula you describe in this post is not the same as in the prorealtime tool (predefined indicators).
    Could you please show the formula used in prorealtime?
    Thanks

  2. Dunkelmann • 10/26/2015 #

    I think if you substitute Momentum for ROC in the code you get the tool values.

  3. marzibre • 10/26/2015 #

    Hello Nicholas I confirm you that the formula it is not the same. Could you please give me a link where I can find the predifined code of True Strenght Index? I need to it to take as example to create the True Directional Index (another William Blau indicator)

  4. gelex911 • 10/26/2015 #

    I confirm too that the formula given above differs from the predefined TSI. Why this missmatch?

  5. Bateson • 10/26/2015 #

    Bonjour.
    L’indicateur fonctionne remarquablement.
    Je n’arrive cependant pas à l’intégrer dans une stratégie “croisement TSI / TMA”. Pourriez-vous m’indiquer comment faire ?
    Cordialement

  6. Fernando • 10/26/2015 #

    Hi I had same problem, so I translated from NinjaTrader TSI’s formula to PRT code, seems the same values now!

    Fast = 3
    Slow = 14

    constant1 = 2 / (1 + Slow)
    constant2 = 1 – (2 / (1 + Slow))
    constant3 = 2 / (1 + Fast)
    constant4 = 1 – (2 / (1 + Fast))

    IF BarIndex = 0 THEN
    fastAbsEma = 0
    fastEma = 0
    slowAbsEma = 0
    slowEma = 0
    Valor = 0
    ELSE
    momento = Close[0] – Close[1]
    slowEma = momento * constant1 + constant2 * slowEma
    fastEma = slowEma * constant3 + constant4 * fastEma
    slowAbsEma = Abs(momento) * constant1 + constant2 * slowAbsEma
    fastAbsEma = slowAbsEma * constant3 + constant4 * fastAbsEma[1]
    IF fastAbsEma = 0 THEN
    Valor = 0
    ELSE
    Valor = 100 * fastEma[0] / fastAbsEma[0]
    ENDIF
    ENDIF

    Return Valor AS “TSI”

avatar
Register or

Likes

avatar
Related users ' posts
lolo
10 years ago
Fisher Transform
Fisher Transform
15
Indicators
Derek In line 10 there is a value missing for the calculation. You can cross check it here on page...
Coldtrade Hello. I'm new to programming and don't understand the algebraic meaning of the formula: Va...
Derek You are right, There is something odd with this line of code. It should be A = B + n * A[1...
lolo
10 years ago
JD 52 Week HighLowBand
JD 52 Week HighLowBand
0
Indicators
lolo
10 years ago
Powerplay
Powerplay
0
Indicators
lolo
10 years ago
PD WoodiesCCI
PD WoodiesCCI
0
Indicators
lolo
10 years ago
Woodies CCI
Woodies CCI
0
Indicators
lolo
10 years ago
HA count
HA count
0
Indicators
lolo
10 years ago
Keltner Channel
Keltner Channel
4
Indicators
torkelab Sorry, cant seem to submit an image..?? The link contains one however..
ed65 hi is it possible to duplicate 2 different keltners on same price ie one at 34 2nd at 17 , ...
lolo
10 years ago
Directional Volume
Directional Volume
1
Indicators
Rory Dryden Initial viewing of this on SPY shows promise.
lolo
10 years ago
KST
KST
1
Indicators
Alai-n Bonjour. Que cela soit cette formulation du KST ou celle par défaut de la plateforme PRT, au...
lolo
10 years ago
SafeZone Stop - Elder
SafeZone Stop – Elder
0
Indicators
lolo
10 years ago
Hull moving average
Hull moving average
8
Indicators
Hynesjp Hi Nicolas, I followed your suggestion to be able to change the colour but I cannot get the ...
Nicolas Remove the COLOURED instruction from the last line of the code.
Jozo Hi Guys, could you help? When I attach this Hull MA it goes to subwindow! It should attach o...
lolo
10 years ago
Swing Hilo
Swing Hilo
0
Indicators
lolo
10 years ago
Projection Oscillator
Projection Oscillator
0
Indicators
lolo
10 years ago
Projection Bands
Projection Bands
0
Indicators
lolo
10 years ago
Hammer
Hammer
0
Indicators
lolo
10 years ago
Thermometer
Thermometer
0
Indicators
lolo
10 years ago
%B Bollinger
%B Bollinger
7
Indicators
Laurent Thanks a lot
oraclus Bonjour le %bollinger est protégé sur Prorealtime. Le code ci-dessus est paramétré par défau...
Nicolas Le code dans ce post répond à cette demande d'adaptation de la période du %Bollinger: https:...
lolo
10 years ago
Trend Force
Trend Force
3
Indicators
Petrus Hi Lolo.   If you put on the graph only the difference between both values, the resul...
swapping Trend Force with Background Color
swapping // --- property setting //Alpha = 40 // Transparency backgroundcolor // --- end // Dete...
lolo
10 years ago
TD REI
TD REI
0
Indicators
lolo
10 years ago
ZIGZAG TREND
ZIGZAG TREND
4
Indicators
Vonasi I'm interested in this indicator but it does not appear to work on 10.3. Could it be possibl...
Nicolas You need to change the 'amnt' variable to a percentage, so if you set it to 10 it represents...
Vonasi Thanks for your reply - I had tried that - I set the amnt to 1 on a 15 min GBPUSD chart and ...

Top