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
TradingDeckard
9 years ago
T3 daytrader Coral
T3 daytrader Coral
3
Indicators
avatar
NFX thank you for helping the community bro!!!! i'll try this one on forex next week
zilliq Be careful THV coral is already based on T3 ;-)   Zilliq
klong Hola. Cómo hago para poner este indicador, de manera que aparezca en el precio? Gracias de a...
Bard Did anyone get an error with lines 25 and 26?
Nicolas
9 years ago
lokbuscas Or in weekly??
Nicolas I don't know, you should make your own studies.
lokbuscas Ok thanks Nico
dominike
9 years ago
Darvas Boxes
Darvas Boxes
6
Indicators
Philip Raphael PRT says, that "the instruction "DPO" can not be used in the automated trading mode. What do...
Dudu Hi - I find the Darvas box repaints, making the call to buy/sell unreliable. How can repaint...
Bard https://www.prorealcode.com/topic/dpo/ Results: http://thepatternsite.com/Darvas.html
Philip Raphael Thank you so much for your work here! It works fantastically!
Tarquin Hi, Thanks for posting this, I downloaded your first version of Better Volume and it works ...
El Chupacabra Hi Tony, just seen your message. TBH I haven't made a version 2!, maybe the moderator has do...
Nicolas Dans l'onglet prix, choisir d'appliquer l'échelle qu'au prix uniquement.
Eloi MERCI
TradingDeckard
9 years ago
camarilla pivot points
camarilla pivot points
9
Indicators
Choliver Merci Nicolas pour cette réponse rapide et cette information. J'ai regardé et testé et cela...
carlo__ Sorry, but this indicator doesn't update the levels in real time. They are draw and stucked ...
carlo__ I leave an update. The indicator works as it plots in a progressive way the Cama levels on t...
Nicolas
9 years ago
Adaptive Stochastic
Adaptive Stochastic
1
Indicators
AngelPujalt falta poner bandas por la parte de arriba: 80 y por la parte de abajo: 20
Nicolas
9 years ago
Adaptive CCI
Adaptive CCI
4
Indicators
Stef Thanks @Saud. Enjoyed the article.
Newbie I've tried to modify this so I can display on 1min chart with the 5 min chart variant as a s...
Nicolas No, just create 2 different indicators in this case, one with the timeframe(5 minutes) and o...
GraHal Hi Nicolas I like this and would like to understand it fully so please forgive the (maybe) d...
Nicolas Hi GraHal, the Factor parameter is only a multiplier of the ATR that is added or subtracted ...
GraHal Nicolas, thank you for your useful and informative response. Yes I optimise using ProBackte...
Denis Hello, Congratulations and thank you for this work. I do not understand one thing, however...
Nicolas
9 years ago
GraHal Hi Nicolas Britains .itf file didn't work for me ... I had to change h to hh at line 13 and...
Nicolas Thank you GraHal for pointing this error, i have corrected the code in the file. The code in...
sr021 Hi I tried to copy and paste the code, but recieve the message  : Syntax error:The followi...
Nicolas Hello, of course. You have 3 options : 1/ you download the file and import it into your plat...
Nicolas
9 years ago
Nicolas
9 years ago
Nicolas
9 years ago
trabucaire Hello, what does it mean the 20 and 40 number on this code ? Thank you !
robertogozzi I modified it to make parameters customizable and to Draw a Grey candlestick when a range is...
Nicolas
9 years ago
Blai5 CazaGaps
Blai5 CazaGaps
0
Indicators
Nicolas
9 years ago
Blai5 BB double
Blai5 BB double
0
Indicators

Top