The “Trinity Impulse” indicator tells you when to enter the market and “flat” (ranging) periods.
When the indicator is zero, it indicates a neutral trend.
The “V” shaped pulses indicate when to enter the market in the opposite direction. Finally, the “U” shaped pulses indicate an entry in the same direction.
Converted from an MT4 indicator by a request in the Italian forum.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
//PRC_Trinity Impulse | indicator //10.12.2017 //Nicolas @ www.prorealcode.com //Sharing ProRealTime knowledge //Converted from MT4 indicator // --- settings //nPeriod = 5 //nLevel = 34 // --- end of settings wprice=(high + low + close + close)/4 c = cci[nPeriod](wprice) f = weightedaverage[nPeriod](forceindex(wprice)) //---- if(c * f >= nLevel) then if(c > 0 and f > 0) then iCF = 1 endif if(c < 0 and f < 0) then iCF = -1 endif else iCF = 0 endif return iCF as "Trinity Impulse" |
Share this
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 :PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
bonjour Nicolas
Bravo pour l’ensemble de ton oeuvre très riche en informations de qualité
j’ai téléchargé ton trinity impulse mais je n’ai qu’une simple ligne horizontale = 0
merci pour ton aide
Cet indicateur nécessite que l’instrument possède des Volumes. Sinon il ne pourra pas se calculer et renverra une valeur nulle.
ah d’accord merci beaucoup
nlevel1 non modifica la curva al variare del suo valore
Very nice ; what is the best period input date for DAILY CHART ?