Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
MY Chart for Amibroker (AFL)
Copy & Paste Friendly
Back
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 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | _SECTION_BEGIN ( "SupDem" ); SetChartOptions (0, chartShowArrows | chartShowDates ); bk= ParamColor ( "Bk col" , colorDarkGrey ); SetChartBkColor (bk); SetBarFillColor ( IIf ( C > O , colorBrightGreen , IIf ( C <= O , colorRed , colorLightGrey ))); Plot ( C , "Price" ,47,64,0,0,0,0); sr= ParamToggle ( "Plot Supp/Res lines" , "No|Yes" ,1); Per= Param ( "Sensitivity" ,1,0.5,5,0.5); g= Param ( "No.of Lines" ,3,1,5,1); x= Cum (1); Pk1= PeakBars ( H ,per,1)== 0; Tk1= TroughBars ( L ,per,1)== 0; px1= LastValue ( ValueWhen (pk1,x,1)); px2= LastValue ( ValueWhen (Pk1,x,2)); px3= LastValue ( ValueWhen (Pk1,x,3)); px4= LastValue ( ValueWhen (pk1,x,4)); px5= LastValue ( ValueWhen (Pk1,x,5)); tx1= LastValue ( ValueWhen (Tk1,x,1)); tx2= LastValue ( ValueWhen (Tk1,x,2)); tx3= LastValue ( ValueWhen (Tk1,x,3)); tx4= LastValue ( ValueWhen (Tk1,x,4)); tx5= LastValue ( ValueWhen (Tk1,x,5)); XT1 = LastValue ( ValueWhen (pk1, H ,1));XT1c = LastValue ( ValueWhen (pk1, Max ( C , O ),1)); XT2 = LastValue ( ValueWhen (Pk1, H ,2));XT2c = LastValue ( ValueWhen (pk1, Max ( C , O ),2)); XT3 = LastValue ( ValueWhen (Pk1, H ,3));XT3c = LastValue ( ValueWhen (pk1, Max ( C , O ),3)); XT4 = LastValue ( ValueWhen (pk1, H ,4));XT4c = LastValue ( ValueWhen (pk1, Max ( C , O ),4)); XT5 = LastValue ( ValueWhen (Pk1, H ,5));XT5c = LastValue ( ValueWhen (pk1, Max ( C , O ),5)); YT1 = LastValue ( ValueWhen (tk1, L ,1));YT1c = LastValue ( ValueWhen (tk1, Min ( O , C ),1)); YT2 = LastValue ( ValueWhen (tk1, L ,2));YT2c = LastValue ( ValueWhen (tk1, Min ( O , C ),2)); YT3 = LastValue ( ValueWhen (tk1, L ,3));YT3c = LastValue ( ValueWhen (tk1, Min ( O , C ),3)); YT4 = LastValue ( ValueWhen (tk1, L ,4));YT4c = LastValue ( ValueWhen (tk1, Min ( O , C ),4)); YT5 = LastValue ( ValueWhen (tk1, L ,5));YT5c = LastValue ( ValueWhen (tk1, Min ( O , C ),5)); pk1= IIf (x>px1 AND g>=1 AND sr,XT1, Null );pk1c= IIf (x>px1 AND g>=1 AND sr,XT1c, Null ); Col1= IIf ( LastValue ( C )>pk1, ColorRGB (14,14,100), ColorRGB (180,20,20) ); Plot (pk1, "" ,31,1); PlotOHLC (0,pk1,pk1c,0, "" ,Col1, styleCloud | styleNoLabel , Null , Null , Null , -1); pk2= IIf (x>px2 AND g>=2 AND sr,XT2, Null );pk2c= IIf (x>px2 AND g>=2 AND sr,XT2c, Null ); Col2= IIf ( LastValue ( C )>pk2, ColorRGB (24,24,120), ColorRGB (180,40,40) ); Plot (pk2, "" ,31,1); PlotOHLC (0,pk2,pk2c,0, "" ,Col2, styleCloud | styleNoLabel , Null , Null , Null , -2); pk3= IIf (x>px3 AND g>=3 AND sr,XT3, Null );pk3c= IIf (x>px3 AND g>=3 AND sr,XT3c, Null ); Col3= IIf ( LastValue ( C )>pk3, ColorRGB (34,34,140), ColorRGB (180,60,60)); Plot (pk3, "" ,31, 1); PlotOHLC (0,pk3,pk3c,0, "" ,Col3, styleCloud | styleNoLabel , Null , Null , Null , -3); pk4= IIf (x>px4 AND g>=4 AND sr,XT4, Null );pk4c= IIf (x>px4 AND g>=4 AND sr,XT4c, Null ); Col4= IIf ( LastValue ( C )>pk4, ColorRGB (44,44,160), ColorRGB (180,80,80)); Plot (pk4, "" ,31,1); PlotOHLC (0,pk4,pk4c,0, "" ,Col4, styleCloud | styleNoLabel , Null , Null , Null , -4); pk5= IIf (x>px5 AND g>=5 AND sr,XT5, Null );pk5c= IIf (x>px5 AND g>=5 AND sr,XT5c, Null ); Col5= IIf ( LastValue ( C )>pk5, ColorRGB (54,54,180), ColorRGB (180,100,100)); Plot (pk5, "" ,31,1); PlotOHLC (0,pk5,pk5c,0, "" ,Col5, styleCloud | styleNoLabel , Null , Null , Null , -5); tl1= IIf (x>tx1 AND g>=1 AND sr,YT1, Null );tl1c= IIf (x>tx1 AND g>=1 AND sr,YT1c, Null ); Col1= IIf ( LastValue ( C )>tl1, ColorRGB (14,14,100), ColorRGB (180,20,20) ); Plot (tl1, "" ,1,1); PlotOHLC (0,tl1,tl1c,0, "" ,Col1, styleCloud | styleNoLabel , Null , Null , Null , -1); tl2= IIf (x>tx2 AND g>=2 AND sr,YT2, Null );tl2c= IIf (x>tx2 AND g>=2 AND sr,YT2c, Null ); Col2= IIf ( LastValue ( C )>YT2, ColorRGB (24,24,120), ColorRGB (180,40,40)); Plot (tl2, "" ,1,1); PlotOHLC (0,tl2,tl2c,0, "" ,Col2, styleCloud | styleNoLabel , Null , Null , Null , -2); tl3= IIf (x>tx3 AND g>=3 AND sr,YT3, Null );tl3c= IIf (x>tx3 AND g>=3 AND sr,YT3c, Null ); Col3= IIf ( LastValue ( C )>YT3, ColorRGB (34,34,140), ColorRGB (180,60,60) ); Plot (tl3, "" ,1,1); PlotOHLC (0,tl3,tl3c,0, "" ,Col3, styleCloud | styleNoLabel , Null , Null , Null , -3); tl4= IIf (x>tx4 AND g>=4 AND sr,YT4, Null );tl4c= IIf (x>tx4 AND g>=4 AND sr,YT4c, Null ); Col4= IIf ( LastValue ( C )>YT4, ColorRGB (44,44,160), ColorRGB (180,80,80) ); Plot (tl4, "" ,1,1); PlotOHLC (0,tl4,tl4c,0, "" ,Col4, styleCloud | styleNoLabel , Null , Null , Null , -4); tl5= IIf (x>tx5 AND g>=5 AND sr,YT5, Null );tl5c= IIf (x>tx5 AND g>=5 AND sr,YT5c, Null ); Col5= IIf ( LastValue ( C )>YT5, ColorRGB (54,54,180), ColorRGB (180,100,100)); Plot (tl5, "" ,1,1); PlotOHLC (0,tl5,tl5c,0, "" ,Col5, styleCloud | styleNoLabel , Null , Null , Null , -5); _SECTION_END (); _SECTION_BEGIN ( "Sup / Res Lines" ); SRswitch = ParamToggle ( "Sup / Res Lines" , "On,Off" ); CHLswitch = ParamToggle ( "Hi Low / Close" , "Hi Low,Close" ); NoLines = Param ( "No of Lines" ,3,1,10,1); Sen = Param ( "Sensitivity" ,5,1,100,1); Rcolor= ParamColor ( "Res Color" , colorTeal ); Rstyle= ParamStyle ( "Res Style" , styleLine ); Scolor= ParamColor ( "Sup Color" , colorBrown ); Sstyle= ParamStyle ( "Sup Style" , styleLine ); y=0; x=0; for ( i = 1; i < NoLines+1 ; i++ ) { Y[i]= LastValue ( Peak ( IIf (CHLswitch, C , H ),Sen,i)); x[i]= BarCount - 1 - LastValue ( PeakBars ( IIf (CHLswitch, C , H ),Sen,i)); Line = LineArray ( x[i], y[i], Null , y[i], 1 ); Plot ( IIf (SRswitch, Null ,Line), "" , Rcolor, Rstyle ); Y[i]= LastValue ( Trough ( IIf (CHLswitch, C , L ),Sen,i)); x[i]= BarCount - 1 - LastValue ( TroughBars ( IIf (CHLswitch, C , L ),Sen,i)); Line = LineArray ( x[i], y[i], Null , y[i], 1 ); Plot ( IIf (SRswitch, Null ,Line), "" , Scolor, Sstyle ); } _SECTION_END (); _SECTION_BEGIN ( "MAMA" ); SetBarsRequired ( 10000, 10000 ); SetChartOptions (0, chartShowArrows | chartShowDates ); prc = ( High + Low ) / 2; fastlimit = 0.5; slowlimit = 0.05; pi=4* atan (1); RTD=180/pi; DTR=pi/180; Cyclepart= Param ( "Alpha" ,0.5,0.1,1,0.1); Smooth[0] = Period = Detrender[0] = I1[0] = Q1[0] = 0; phase[0]=deltaphase[0]=MAMA[0]=FAMA[0]=0; for ( i = 6; i < BarCount ; i++ ) { Smooth[i] = ( 4 * prc[i] + 3 * prc[i-1] + 2 * prc[i-2] + prc[i-3] ) / 10; AmpCorr[i] = 0.075 * Period[i-1] + 0.54; Detrender[i] = ( 0.0962 * Smooth[i] + 0.5769 * Smooth[i-2] - 0.5769 * Smooth[i-4] - 0.0962 * Smooth[i-6] ) * AmpCorr[i]; Q1[i] = ( 0.0962 * Detrender[i] + 0.5769 * Detrender[i-2] - 0.5769 * Detrender[i-4] - 0.0962 * Detrender[i-6] ) * AmpCorr[i]; I1[i] = Detrender[i-3]; if (I1[i] != 0) phase[i] = DTR*360/ atan (q1[i]/I1[i]); deltaphase[i]=phase[i-1]-phase[i]; if (deltaphase[i] <1) deltaphase[i]=1; alpha[i]=fastlimit[i]/deltaphase[i]; if (alpha[i] < slowlimit[i]) alpha[i]=slowlimit[i]; MAMA[i]=alpha[i] * prc [i] +(1-alpha[i])*MAMA[i-1]; FAMA[i]=Cyclepart*alpha[i] * prc [i] +(1-Cyclepart*alpha[i])*FAMA[i-1]; } _SECTION_END (); _SECTION_BEGIN ( "SYSTEM" ); BuySetupValue= ValueWhen ( Cross (MAMA,FAMA), H ,1); SellsetupValue= ValueWhen ( Cross (FAMA,MAMA), L ,1); Buysetup = Cross (MAMA,FAMA) ; Sellsetup = Cross (FAMA,MAMA); Longa = Flip (Buysetup,Sellsetup); shrta = Flip (Sellsetup,Buysetup); Buy =Longa AND Cross ( C ,BuySetupValue); Sell =shrta AND Cross (SellsetupValue, C ); Buy = ExRem ( Buy , Sell ); Sell = ExRem ( Sell , Buy ); t1= Flip ( Buy , Sell ); t2= Flip ( Sell , Buy ); BPrice= ValueWhen (t1 AND Ref (t1,-1)==0, C ,1); SPrice= ValueWhen (t2 AND Ref (t2,-1)==0, C ,1); GraphXSpace = 5; dist = 1.5* ATR (20); for ( i = 0; i < BarCount ; i++ ) { if ( Buy [i] ) PlotText ( "" + C [ i ], i, L [ i ]-dist[i], colorLime ); if ( Sell [i] ) PlotText ( "" + C [ i ], i, H [ i ]+dist[i], colorYellow ); } _SECTION_END (); //=================TITLE================================================================================================ _SECTION_BEGIN ( "Title" ); if ( Status ( "action" ) == actionIndicator ) ( Title = EncodeColor ( colorWhite )+ Name () + " - " + EncodeColor ( colorRed )+ Interval (2) + EncodeColor ( colorWhite ) + " - " + Date () + " > " + EncodeColor ( colorYellow ) + "Op-" + O + " " + "Hi-" + H + " " + "Lo-" + L + " " + "Cl-" + C + " " + "Vol= " + WriteVal ( V )+ "\n" + EncodeColor ( colorLime )+ WriteIf ( Buy , " GO LONG / Reverse Signal at " + C + " " , "" )+ WriteIf ( Sell , " EXIT LONG / Reverse Signal at " + C + " " , "" )+ "\n" + EncodeColor ( colorWhite )+ WriteIf ( Sell , "Total Profit/Loss for the Last Trade Rs." +( C -BPrice)+ "" , "" )+ WriteIf ( Buy , "Total Profit/Loss for the Last trade Rs." +(SPrice- C )+ "" , "" )+ WriteIf (Longa AND NOT Buy , "Trade : Long - Entry price Rs." +(BPrice), "" )+ WriteIf (shrta AND NOT Sell , "Trade : Short - Entry price Rs." +(SPrice), "" )+ "\n" + WriteIf (Longa AND NOT Buy , "Current Profit/Loss Rs." +( C -BPrice)+ "" , "" )+ WriteIf (shrta AND NOT Sell , "Current Profit/Loss Rs." +(SPrice- C )+ "" , "" )); PlotShapes ( IIf ( Buy , shapeSquare , shapeNone ), colorGreen , 0, L , Offset=-40); PlotShapes ( IIf ( Buy , shapeSquare , shapeNone ), colorLime , 0, L , Offset=-50); PlotShapes ( IIf ( Buy , shapeUpArrow , shapeNone ), colorWhite , 0, L , Offset=-45); PlotShapes ( IIf ( Sell , shapeSquare , shapeNone ), colorRed , 0, H , Offset=40); PlotShapes ( IIf ( Sell , shapeSquare , shapeNone ), colorOrange , 0, H , Offset=50); PlotShapes ( IIf ( Sell , shapeDownArrow , shapeNone ), colorWhite , 0, H , Offset=-45); _SECTION_END (); _SECTION_BEGIN ( "ShfinTrend" ); procedure calcTrend_proc(ATR_Period,tr,ATR_Multiplier,TrendMode,CalcPrice) { global buffer_line_down; global buffer_line_up; buffer_line_down = Null ; buffer_line_up = Null ; PHASE_NONE = 0; PHASE_BUY = 1; PHASE_SELL = -1; phase=PHASE_NONE; band_upper = 0;band_lower = 0; for (i = ATR_Period + 1; i < BarCount ; i++) { band_upper = CalcPrice[i] + ATR_Multiplier * tr[i]; band_lower = CalcPrice[i] - ATR_Multiplier * tr[i]; if (phase==PHASE_NONE) { buffer_line_up[i] = CalcPrice[i]; buffer_line_down[i] = CalcPrice[i]; } if (phase!=PHASE_BUY && Close [i]>buffer_line_down[i-1] && ! IsEmpty (buffer_line_down[i-1])) { phase = PHASE_BUY; buffer_line_up[i] = band_lower; buffer_line_up[i-1] = buffer_line_down[i-1]; } if (phase!=PHASE_SELL && Close [i]<buffer_line_up[i-1] && ! IsEmpty (buffer_line_up[i-1])) { phase = PHASE_SELL; buffer_line_down[i] = band_upper; buffer_line_down[i-1] = buffer_line_up[i-1]; } if (phase==PHASE_BUY && ((TrendMode==0 && ! IsEmpty (buffer_line_up[i-2])) || TrendMode==1) ) { if (band_lower>buffer_line_up[i-1]) { buffer_line_up[i] = band_lower; } else { buffer_line_up[i] = buffer_line_up[i-1]; } } if (phase==PHASE_SELL && ((TrendMode==0 && ! IsEmpty (buffer_line_down[i-2])) || TrendMode==1) ) { if (band_upper<buffer_line_down[i-1]) { buffer_line_down[i] = band_upper; } else { buffer_line_down[i] = buffer_line_down[i-1]; } } } } SetBarsRequired ( sbrAll , sbrAll ); TrendMode = ParamToggle ( "TrendMode" , "Off|On" ,1); ATR_Multiplier = Param ( "ATR_Multiplier" ,2,0.1,10,0.1); ATR_Period = Param ( "ATR_Period" ,5,1,20,1); tr = ATR (ATR_Period); CalcPrice = ( H + L )/2; calcTrend_proc(ATR_Period,tr,ATR_Multiplier,TrendMode,CalcPrice); SetChartOptions (0, chartShowDates ); Plot ( C , "C" , colorWhite ,64); Plot (buffer_line_up, "\ntu" , ColorRGB (28,134,238), styleLine ); Plot (buffer_line_down, "\ntd" , ColorRGB (205,51,51), styleLine ); _SECTION_END (); _SECTION_BEGIN ( "Fishenet" ); EMA3= EMA ( C ,3); EMA46= EMA ( C ,46); EMA5= EMA ( C ,5); EMA48= EMA ( C ,48); EMA7= EMA ( C ,7); EMA50= EMA ( C ,50); EMA9= EMA ( C ,9); EMA52= EMA ( C ,52); EMA11= EMA ( C ,11); EMA54= EMA ( C ,54); EMA13= EMA ( C ,13); EMA56= EMA ( C ,56); EMA15= EMA ( C ,15); EMA58= EMA ( C ,58); EMA17= EMA ( C ,17); EMA60= EMA ( C ,60); /*Plot EMA*/ Plot ( EMA ( Close ,3), "3 EMA" , colorBlue , styleDashed ); Plot ( EMA ( Close ,5), "5 EMA" , colorBlue , styleDashed ); Plot ( EMA ( Close ,7), "7 EMA" , colorBlue , styleDashed ); Plot ( EMA ( Close ,9), "9 EMA" , colorBlue , styleDashed ); Plot ( EMA ( Close ,11), "11 EMA" , colorBlue , styleDashed ); Plot ( EMA ( Close ,13), "13 EMA" , colorBlue , styleDashed ); Plot ( EMA ( Close ,15), "15 EMA" , colorBlue , styleDashed ); Plot ( EMA ( Close ,17), "17 EMA" , colorBlue , styleDashed ); Plot ( EMA ( Close ,46), "46 EMA" , colorDarkRed , styleDashed ); Plot ( EMA ( Close ,48), "48 EMA" , colorDarkRed , styleDashed ); Plot ( EMA ( Close ,50), "50 EMA" , colorDarkRed , styleDashed ); Plot ( EMA ( Close ,52), "52 EMA" , colorDarkRed , styleDashed ); Plot ( EMA ( Close ,54), "54 EMA" , colorDarkRed , styleDashed ); Plot ( EMA ( Close ,56), "56 EMA" , colorDarkRed , styleDashed ); Plot ( EMA ( Close ,58), "58 EMA" , colorDarkRed , styleDashed ); Plot ( EMA ( Close ,60), "60 EMA" , colorDarkRed , styleDashed ); _SECTION_END (); |