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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Ichimoku TSL V3.0 - phi1.618 for Amibroker (AFL)

Rating:
2 / 5 (Votes 5)
Tags:
trading system, amibroker, ichimoku

1)Buy on Close above the Ichimoku TSL line
2)Sell on Close below the Ichimoku TSL line
3)Red Arrows indicates sell signal i.e candle closes below the cloud
4)Green Arrows indicates Buy Signal i.e candle closes above the cloud

Similar Indicators / Formulas

Brian Wild - Ichimoku
Submitted by kaiji over 15 years ago
Ichimoku Complete Buy & Sell
Submitted by morgen almost 15 years ago
Ichimoku with Buy & Sell
Submitted by hizari over 14 years ago
Ichimoku AFL
Submitted by Toshi about 15 years ago
Ichimoku v2
Submitted by Alok about 15 years ago
Intraday trading around 70% accurate signals
Submitted by knb1978 about 12 years ago

Indicator / Formula

Copy & Paste Friendly
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
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
_SECTION_END();
 
 
_SECTION_BEGIN("Ichimoku TSL ");
GraphXSpace =1;
 
prds = Param("Standard Line Periods?", 12,5,26,1);
prds1 = Param("Turning Line Periods?", 3,3,10,1);
prds2 = Param("Delayed Line Periods?", 11,4,25,1);
prds3 = Param("Spans Periods?", 18,10,52,1);
 
TL = ( HHV( H, prds1) + LLV( L, prds1) )/2;
SL = ( HHV( H, prds) + LLV( L, prds) )/2;
DL = Ref( C, prds2);
Sp1 = Ref( ( SL + TL )/2, -prds2);
Sp2 = Ref( (HHV( H, prds3) + LLV(L, prds3))/2, -prds2);
 
 
SetChartOptions( 0, chartShowDates | chartShowArrows | chartLogarithmic | chartWrapTitle );
_N( Title = StrFormat( "{{NAME}} - " + SectorID( 1 ) + " - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " + WriteVal( V, 1.0 ) + " {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ) );
Plot( C, "Close", colorBlack, styleCandle | styleNoTitle | ParamStyle( "Style" ) | GetPriceStyle() );
 
if ( ParamToggle( "Tooltip shows", "All Values|Only Prices" ) )
{
ToolTip = StrFormat( "Open: %gnHigh: %gnLow: %gnClose: %g (%.1f%%)nVolume: " + NumToStr( V, 1 ), O, H, L, C, SelectedValue( ROC( C, 1 ) ) );
}
Buy = Cross(Close,IIf(sp1>sp2,sp1,sp2));
Sell = Cross(IIf(sp1<sp2,sp1,sp2),Close);
Short=Sell;
Cover=Buy;
/* exrem is one method to remove surplus strade signals*/
Buy = ExRem(Buy,Sell);
Sell = ExRem(Sell,Buy);
Buyc=0;
 
Buyc=Flip(Buy,Sell);
Sellc=Flip(Sell,Buy);
//Buyc=ValueWhen(Sell,-1);
 
TrendSL= IIf(Buyc==1,Min(sp1,sp2),Max(sp1,sp2));
 
Filter = 1;
 
AddTextColumn( FullName(), "Company Name" );
AddColumn( Buy, "Buy", 1 );
AddColumn( Sell, "Sell", 1 );
AddColumn( C, "Close", 1.3 );
AddColumn( H, "High", 1.3 );
//PlotOHLC (Sp1,Sp1,Sp2,Sp2,"Cloud",IIf(Sp1>Sp2,ParamColor("Span1 Color", ColorRGB(0,255,0)),ParamColor("Span2 Color",ColorRGB(255,104,32))),styleCloud);
Plot(TrendSL,"IchiTrend",colorRed);
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);
 
if( Status("action") == actionIndicator )
(
Title = EncodeColor(colorWhite)+ "NICK MA Swing System" + " - " Name() + " - " + EncodeColor(colorRed)+ Interval(2) + EncodeColor(colorWhite) +
 "  - " + Date() +" - "+"n" +EncodeColor(colorRed) +"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");
 
for(i=BarCount-1;i>1;i--)
 
{
 
if(Buy[i] == 1)
 
{
 
entry = C[i];
 
sig = "BUY";
 
sl = TrendSL[i];
 
tar1 = entry + (entry * .0050);
 
tar2 = entry + (entry * .0092);
 
tar3 = entry + (entry * .0179);
 
  
 
bars = i;
 
i = 0;
 
}
 
if(Sell[i] == 1)
 
{
 
sig = "SELL";
 
entry = C[i];
 
sl = TrendSL[i];
 
tar1 = entry - (entry * .0050);
 
tar2 = entry - (entry * .0112);
 
tar3 = entry - (entry * .0212);
 
  
 
  
 
bars = i;
 
i = 0;
 
}
 
}
 
Offset = 20;
 
Clr = IIf(sig == "BUY", colorLime, colorRed);
 
ssl = IIf(bars == BarCount-1, TrendSL[BarCount-1], Ref(TrendSL, -1));
 
sl = ssl[BarCount-1];
 
 
Plot(LineArray(bars-Offset, tar1, BarCount, tar1,1), "", Clr, styleLine|styleDots, Null, Null, Offset);
 
Plot(LineArray(bars-Offset, tar2, BarCount, tar2,1), "", Clr, styleLine|styleDots, Null, Null, Offset);
 
Plot(LineArray(bars-Offset, tar3, BarCount, tar3,1), "", Clr, styleLine|styleDots, Null, Null, Offset);
 
 
 
//Plot(LineArray(bars-Offset, sl, BarCount, sl,1), "", colorDarkRed, styleLine|styleLine, Null, Null, Offset);
 
//Plot(LineArray(bars-Offset, entry, BarCount, entry,1), "", colorGreen, styleLine|styleLine, Null, Null, Offset);
 
 
 
/*
 
for (i=bars; i <BarCount;i++)
 
{
 
PlotText(""+sig+"@"+entry, BarCount-5,entry,Null,colorBlue);
 
PlotText("T1@"+tar1,BarCount-5,tar1,Null,Clr);PlotText("T2@"+tar2,BarCount-5,tar2,Null,Clr);PlotText ("T3@"+tar3,BarCount-5,tar3,Null,Clr);
 
  
 
}*/
 
  
 
messageboard = ParamToggle("Message Board","Show|Hide",1);
 
if (messageboard == 1 )
 
{
 
GfxSelectFont( "Tahoma", 13, 100 );
 
GfxSetBkMode( 1 );
 
GfxSetTextColor( colorWhite );
 
  
 
if ( sig =="BUY")
 
{
 
GfxSelectSolidBrush( colorBlue ); // this is the box background color
 
}
 
else
 
{
 
GfxSelectSolidBrush( colorRed ); // this is the box background color
 
}
 
pxHeight = Status( "pxchartheight" ) ;
 
xx = Status( "pxchartwidth");
 
Left = 1100;
 
width = 310;
 
x = 5;
 
x2 = 290;
 
  
 
y = pxHeight;
 
  
 
GfxSelectPen( colorGreen, 1); // broader color
 
GfxRoundRect( x, y - 98, x2, y , 7, 7 ) ;
 
GfxTextOut( ( "Marketcalls - Ichimoku TSL"),13,y-100);
 
GfxTextOut( (" "),27,y-100);
 
GfxTextOut( ("Last " + sig + " Signal came " + (BarCount-bars-1) * Interval()/60 + " mins ago"), 13, y-80) ; // The text format location
 
GfxTextOut( ("" + WriteIf(sig =="BUY",sig + " @ ",sig + " @") + " : " + entry), 13, y-60);
 
GfxTextOut( ("Trailing SL : " + Ref(TrendSL,-1) + " (" + WriteVal(IIf(sig == "SELL",entry-sl,sl-entry), 2.2) + ")"), 13, y-40);
 
/*GfxTextOut( ("TGT:1 : " + tar1), 13, y -80);
 
GfxTextOut( ("TGT:2 : " + tar2), 13,y-60);
 
GfxTextOut( ("TGT:3 : " + tar3), 13,y-40);*/
 
GfxTextOut( ("Current P/L : " + WriteVal(IIf(sig == "BUY",(C-entry),(entry-C)),2.2)), 13, y-22);;
 
 
 
 
 
 
 
 
 
//Magfied Market Price
 
FS=Param("Font Size",30,11,100,1);
 
GfxSelectFont("Times New Roman", FS, 700, True );
 
GfxSetBkMode( colorWhite ); 
 
GfxSetTextColor( ParamColor("Color",colorGreen) );
 
Hor=Param("Horizontal Position",940,1,1200,1);
 
Ver=Param("Vertical Position",12,1,830,1);
 
GfxTextOut(""+C, Hor , Ver );
 
YC=TimeFrameGetPrice("C",inDaily,-1);
 
DD=Prec(C-YC,2);
 
xx=Prec((DD/YC)*100,2);
 
GfxSelectFont("Times New Roman", 11, 700, True );
 
GfxSetBkMode( colorBlack ); 
 
GfxSetTextColor(ParamColor("Color",colorYellow) );
 
GfxTextOut(""+DD+"  ("+xx+"%)", Hor , Ver+45 );
 
  
 
}
 
 
_SECTION_END();

2 comments

1. parfumeur

Link to original alf, with charts & misc. comments:

http://www.marketcalls.in/amibroker/ichimoku-tsl-amibroker-afl-code-v3-0.html

2. MotaSheth

The Signals are getting re-painted,

hence causing confusion in live trading,

Please look in to it

Leave Comment

Please login here to leave a comment.

Back