The indicator DayImpuls T3 v3 is basically based on the combination of a DayImpuls with a T3 moving average.
This oscillator will inform you on both the trend and the strength of the market by measuring the slope of the moving average T3.
A rather bullish market is characterized by a position of the oscillator above level 0 and a rather bearish market by a position lower than this one.
The indicator also has 2 upper and lower bands, representing the last highest and last lowest of the oscillator according to periods that adapt automatically according to the timeframe on which the oscillator is active.
Indicator converted from MT4 version by a request in the English indicator’s 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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
//PRC_DayImpuls T3 v3 | indicator //02.11.2017 //Nicolas @ www.prorealcode.com //Sharing ProRealTime knowledge // --- settings //per=14 //t3period=8 //b=0.7 // --- end of settings b2=b*b b3=b2*b c1=-b3 c2=(3*(b2+b3)) c3=-3*(2*b2+b+b3) c4=(1+3*b+b3+3*b2) n=max(1,t3period) n=1 + 0.5*(n-1) w1=2/(n + 1) w2=1 - w1 //mBar=d*per imp=0 //Level=0.0 for i=0 to per do imp=imp+(open[i]-close[i]) next imp=round(imp/pointsize) if (imp=0 ) then imp=0.0001 endif if (imp<>0 ) then imp=-imp DayImp=imp endif ddpo=DayImp e1=w1*ddpo + w2*e1 e2=w1*e1 + w2*e2 e3=w1*e2 + w2*e3 e4=w1*e3 + w2*e4 e5=w1*e4 + w2*e5 e6=w1*e5 + w2*e6 t3=c1*e6 + c2*e5 + c3*e4 + c4*e3 once NbBar = 1 if BarIndex < NbBar+2 then MyDay=openday dayminutes = 1440*(MyDay-MyDay[1]) MyHour=openhour hourminutes = 60*(MyHour-MyHour[1]) MyMin=openminute barminutes = MyMin - MyMin[1] + hourminutes + dayminutes barminutes=abs(barminutes) tf = lowest[NbBar](barminutes)[1] endif if tf=5 then N=288 elsif tf=15 then N=96 elsif tf=30 then N=48 elsif tf=60 then N=24 else N=288 endif mMax=DayImp[N-1] mMin=DayImp[N-1] for i = 0 to N-1 do if (mMax<DayImp[i]) then mMax=DayImp[i] endif if (mMin>DayImp[i]) then mMin=DayImp[i] endif next MaxLine = mMax MinLine = mMin ChanLineMax=mMax/2 ChanLineMin=mMin/2 return DayImp coloured(255,0,255) style(line,2), t3 coloured(255,0,0) style(line,3), MaxLine coloured(218,165,32) style(line,3), MinLine coloured(218,165,32) style(line,3), ChanLineMax coloured(0,100,0) style(line,2), ChanLineMin coloured(0,100,0) style(line,2), 0 coloured(100,100,100) style(dottedline) |
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
Merci !