Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
KDX VS ULTIMATE FORCE for Amibroker (AFL)
told you earlier that i am not a coder/programmer but like to tricks/tweaks with due respect to original creator last time i posted z-score and standard deviation move.this time i am trying to catch kdx (just special adx to see momentum) vs ultimate trend force to measure/compare what really happening behind the scene..i mean chart..see the given chart kdx increasing but ultimate force is decreasing which is self explanatory…you just check/back test and your +- comments …
Screenshots
Similar Indicators / Formulas
Indicator / Formula
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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | _SECTION_BEGIN ( "Special KADX Oscillator" ); SetChartBkColor ( colorBlack ); SetBarsRequired (500,0); PI = 3.1415926; T1 = Param ( "Momentum Period" ,5,0,100,1); A= C - Ref ( C ,-T1); a[0]= C [0]; function IIR2( input, f0, f1, f2 ) { result[ 0 ] = input[ 0 ]; result[ 1 ] = input[ 1 ]; for ( i = 10; i < BarCount ; i++ ) { result[ i ] = f0 * input[ i ] + f1 * result[ i - 1 ] + f2 * result[ i - 2 ]; } return result; } function GSMA( input, Period ) { N = 0; an = 2 * PI / Period; c0 = b0 = 1; c1 = b1 = b2 = a1 = a2 = gamma1 = 0; beta1 = 2.415 * ( 1- cos ( an ) ); alpha = -beta1 + sqrt ( beta1 ^ 2 + 2 * beta1 ); alpha1 = ( cos ( an ) + sin ( an ) - 1 )/ cos ( an ); { fo = alpha ^ 2; f1 = 2 * ( 1- alpha ); f2 = -( 1 - alpha )*( 1 - alpha ); } return IIR2( input, fo,f1,f2); } period= Param ( "period" ,15,1,40,1); H1=gsma( H ,period); L1=gsma( L ,period); p = Param ( "adx+d-d" ,14,1,100,1); PDM= IIf (H1> Ref (H1,-1) AND L1>= Ref (L1,-1), H1- Ref (H1,-1), IIf (H1 > Ref (H1,-1) AND L1< Ref (L1,-1) AND H1- Ref (H1,-1)> Ref (L1,-1)-L1, H1- Ref (H1,-1),0)); MDM= IIf (L1< Ref (L1,-1) AND H1<= Ref (H1,-1), Ref (L1,-1)-L1, IIf (H1> Ref (H1,-1) AND L1< Ref (L1,-1) AND H1- Ref (H1,-1)< Ref (L1,-1)-L1, Ref (L1,-1)-L1,0)); PlDI=100* Wilders (PDM,P)/ ATR (P); MIDI=100* Wilders (MDM,P)/ ATR (P) ; K=PlDI-MIDI; ifish= EMA ( EMA ( EMA ( EMA (K,3),3),3),3); Color= IIf (ifish>0, IIf (ifish> Ref (ifish,-1), colorDarkGreen , colorYellow ), IIf (ifish> Ref (ifish,-1), colorBlue , colorRed )); Plot (ifish, "Special KADX Histogram & CCI_Ozel Dots" ,Color, styleHistogram | styleThick , maskHistogram ); Plot (0, "" , colorYellow , styleDashed ); _SECTION_END (); _SECTION_BEGIN ( "DOTS For CC_Ozel" ); a1= EMA ( CCI (5),3); a2= EMA ( CCI (10),3); a3= EMA ( CCI (15),3); b1= StDev (a1,5); b2= StDev (a2,10); b3= StDev (a3,15); RMOV=((a1*b1)+(a2*b2)+(a3*b3))/(b1+b2+b3); K1= EMA ( EMA ( EMA (RMOV,3),3),3); PlotShapes ( IIf (K1 > 0, shapeSmallCircle , shapeNone ), colorBrightGreen ,0,0,0); PlotShapes ( IIf (K1 <= 0, shapeSmallCircle , shapeNone ), colorRed ,0,0,0); _SECTION_END (); _SECTION_BEGIN ( "Trend Direction and Force Index Ribbon" ); MMA= EMA ( C ,15); SMMA= EMA (MMA,15); IMPETMMA=MMA - Ref (MMA,-1); IMPETSMMA=SMMA - Ref (SMMA,-1); DIVMA= abs (MMA - SMMA); AVERIMPET= (IMPETMMA+IMPETSMMA)/2; K1=DIVMA; K2=AVERIMPET*AVERIMPET*AVERIMPET; TDF= K1*K2; NTDF1= EMA (TDF/ HHV ( abs (TDF),15*3),3)*100; NTDF= EMA (NTDF1,3); Bull_Trend=NTDF>4; Bear_Trend=NTDF<=-4; Ribbon_kol= IIf (Bull_Trend, colorGreen , IIf (Bear_Trend, colorRed , colorOrange )); Plot (2, "" , Ribbon_kol, styleOwnScale | styleArea | styleNoLabel , -0.5,100); _SECTION_END (); _SECTION_BEGIN ( "Ultimate Trend Cycle" ); SetChartBkColor ( colorBlack ); aa=( H + L +2* C )/4; A= EMA (aa,13); B= EMA (aa,39); A1= EMA (aa,23); B1= EMA (aa,70); D1=A1/B1; K2= EMA (D1,3); D=A/B; K1= EMA (D,3); K= ROC (K1,1); K3= EMA ( EMA ( ROC (K2,1)*50,3),3); ifish= EMA ( EMA ( EMA ( EMA ( EMA (K,3),3),3),3),3)*60; Color= IIf (ifish>0, IIf (ifish> Ref (ifish,-1), colorDarkGreen , colorYellow ), IIf (ifish> Ref (ifish,-1), colorBlue , colorRed )); Plot (ifish, "Ultimate Trend Cycle Force Index Ribbon" ,Color, styleHistogram | styleThick , maskHistogram ); Plot (K3, "" , colorGreen , styleLine ); Plot ( Ref (K3,-1), "" , colorRed , styleLine ); _SECTION_END (); ///////////////////////////////////////////////////////////////////////////////////// _SECTION_BEGIN ( "DOTS For CCI_Ozel" ); a1= EMA ( CCI (5),3); a2= EMA ( CCI (10),3); a3= EMA ( CCI (15),3); b1= StDev (a1,5); b2= StDev (a2,10); b3= StDev (a3,15); RMOV=((a1*b1)+(a2*b2)+(a3*b3))/(b1+b2+b3); K1= EMA ( EMA ( EMA (RMOV,3),3),3); PlotShapes ( IIf (K1 > 0, shapeSmallCircle , shapeNone ), colorBrightGreen ,0,0,0); PlotShapes ( IIf (K1 <= 0, shapeSmallCircle , shapeNone ), colorRed ,0,0,0); _SECTION_END (); ///////////////////////////////////////////////////////////////////////////////////// _SECTION_BEGIN ( "Trend Direction and Force Index Ribbon" ); MMA= EMA ( C ,15); SMMA= EMA (MMA,15); IMPETMMA=MMA - Ref (MMA,-1); IMPETSMMA=SMMA - Ref (SMMA,-1); DIVMA= abs (MMA - SMMA); AVERIMPET= (IMPETMMA+IMPETSMMA)/2; K1=DIVMA; K2=AVERIMPET*AVERIMPET*AVERIMPET; TDF= K1*K2; NTDF1= EMA (TDF/ HHV ( abs (TDF),15*3),3)*100; NTDF= EMA (NTDF1,3); Bull_Trend=NTDF>4; Bear_Trend=NTDF<=-4; Ribbon_kol= IIf (Bull_Trend, colorGreen , IIf (Bear_Trend, colorRed , colorOrange )); Plot (2, "" , Ribbon_kol, styleOwnScale | styleArea | styleNoLabel , -0.5,100); _SECTION_END (); ///////////////////////////////////////////////////////////////////////////////////// _SECTION_BEGIN ( "StochRSI_Special" ); x=(( RSI (21) - LLV ( RSI (21) ,21)) / (( HHV ( RSI (21 ) ,21)) - LLV ( RSI (21),21)))*100; Value1=0.1*((x)-50); Value2= WMA (Value1,7); KK=( exp (Value2)-1)/( exp (Value2)+1); Plot (0, "" , IIf ( EMA (KK,3)>0.50, colorBrightGreen , colorRed ) ,4+ styleNoLabel ); _SECTION_END (); ///////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////// _SECTION_BEGIN ( "Coppock Trade Signal v1.1" ); //PARAMETERS: ROC1Periods = Param ( "ROC1 periods" ,14,2,200,1,0); ROC2Periods = Param ( "ROC2 periods" ,11,2,200,1,0); WMAPeriods = Param ( "WMA periods" ,10,2,200,1,0); CoppockCurve = ParamToggle ( "Use Coppock curve" , "No|Yes" ,0); CoppockBar = ParamToggle ( "Use Coppock bar" , "No|Yes" ,1); ColBull = ParamColor ( "Bull color" , colorBlue ); ColBear = ParamColor ( "Bear color" , colorRed ); UseTradeSignal = ParamToggle ( "Use trade signal" , "No|Yes" ,1); CoppockFilter = Param ( "Coppock filter" ,20,2,200,1,0); ColBuy = ParamColor ( "Buy color" , colorBrightGreen ); ColSell = ParamColor ( "Sell color" , colorDarkRed ); ColBg = ParamToggle ( "Show background color" , "No|Yes" ,1); //MAIN: Coppock= WMA (( ROC ( C ,ROC1Periods)+ ROC ( C ,ROC2Periods)),WMAPeriods); InitialCalculationLength= Max (ROC1Periods,ROC2Periods)+WMAPeriods; for (i=0;i< BarCount ;i++) { if (i<InitialCalculationLength) //initial zero { Coppock[i]=0.0; if (UseTradeSignal){ Buy =0; Sell =0;} } } LastCoppock1= Ref (Coppock,-1); LastCoppock2= Ref (Coppock,-2); TradeStatus= IIf (Coppock>0, IIf (Coppock>LastCoppock1,ColBull, IIf (Coppock<LastCoppock1,ColBear, IIf (Coppock==LastCoppock1 && LastCoppock1>LastCoppock2,ColBull,ColBear))), IIf (Coppock>LastCoppock1,ColBull, IIf (Coppock<LastCoppock1,ColBear, IIf (Coppock==LastCoppock1 && LastCoppock1>LastCoppock2,ColBull,ColBear)))); StyleTitle= IIf (CoppockCurve && CoppockBar, styleNoTitle ,0); StyleLabel= IIf (CoppockCurve && CoppockBar, styleNoLabel ,0); if (CoppockCurve) Plot (Coppock, "" ,TradeStatus, styleLine | styleThick |StyleTitle| styleNoDraw ); if (CoppockBar) Plot (Coppock, "" ,TradeStatus, styleHistogram | styleNoDraw ); if (UseTradeSignal) { CoppockIsBuy=TradeStatus==ColBull; CoppockIsSell=TradeStatus==ColBear; CoppockBuyValue= ValueWhen (CoppockIsBuy,Coppock,1); CoppockSellValue= ValueWhen (CoppockIsSell,Coppock,1); Buy =! Ref (CoppockIsBuy,-1) && Coppock<0 && CoppockIsBuy && abs (CoppockBuyValue)>=CoppockFilter; Sell =! Ref (CoppockIsSell,-1) && Coppock>0 && CoppockIsSell && abs (CoppockSellValue)>=CoppockFilter; PlotShapes ( IIf ( Buy , shapeUpArrow , shapeNone ),ColBuy,0,0); PlotShapes ( IIf ( Sell , shapeDownArrow , shapeNone ),ColSell,0,0); } if (ColBg) _SECTION_END (); |
4 comments
Leave Comment
Please login here to leave a comment.
Back
nice indicator, Thanks
canhtran many many thanks for response.
Classy,
i like your AFL a lot. thanks so much for sharing.
arian many many thanks for your response.it is really inspiring