-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathZZTraderClutchTF.cs
283 lines (244 loc) · 9.5 KB
/
ZZTraderClutchTF.cs
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
#region Using declarations
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Xml.Serialization;
using NinjaTrader.Cbi;
using NinjaTrader.Data;
using NinjaTrader.Indicator;
using NinjaTrader.Gui.Chart;
using NinjaTrader.Strategy;
#endregion
// LOGS:
//
// 12/1/2011: Added bollinger to filter out trades that is too streched below that probability of trend continuation is less
// Added daily stop loss - this improves drawdown and added better profits
//
// 2/20/2012: Trailing stops, breakeven stop, and cleaned up for PRODUCTION release. TF parameters only.
//
// This namespace holds all strategies and is required. Do not change it.
namespace NinjaTrader.Strategy
{
/// <summary>
/// Implementation of traderclutch
/// </summary>
[Description("Implementation of traderclutch")]
public class ZZTraderClutchTF : Strategy
{
#region Variables
// Wizard generated variables
private int profitTarget1 = 58; // Default setting for ProfitTarget1
private int profitTarget2 = 8; // Default setting for ProfitTarget2
private int stopLoss = 24; // Default setting for StopLoss
private int mALen = 187; // Default setting for MALen
private int swingSize = 11; // Default setting for SwingSize
// User defined variables (add any user defined variables below)
private double aTRLen = 2.0;
//private int stopLossTemp = 0;
private int priorTradesCount = 0;
private double priorTradesCumProfit = 0;
private int bbLen = 96;
private double dailyPntLossStop = 4;
private double bbstddev = 2.50;
private int trailStop = 6; // this is actually the target to hit before moving stopFromEntry ticks from entry level
private int stopFromEntry = -4; // how much to move stop from entry
#endregion
/// <summary>
/// This method is used to configure the strategy and is called once before any strategy method is called.
/// </summary>
protected override void Initialize()
{
VendorLicense("TraderClutch", "ZZTraderClutch", "www.traderclutch.com", "[email protected]");
Add(ZZSwingIdentifierHigh(swingSize));
Add(SMA(Open, MALen));
Add(Bollinger(Close, bbstddev, bbLen));
SetProfitTarget("long", CalculationMode.Ticks, ProfitTarget1);
SetStopLoss("long", CalculationMode.Ticks, StopLoss, false);
SetProfitTarget("short", CalculationMode.Ticks, ProfitTarget1);
SetStopLoss("short", CalculationMode.Ticks, StopLoss, false);
// Position 2, scalper
SetProfitTarget("longscalp", CalculationMode.Ticks, ProfitTarget2);
SetStopLoss("longscalp", CalculationMode.Ticks, StopLoss, false);
SetProfitTarget("shortscalp", CalculationMode.Ticks, ProfitTarget2);
SetStopLoss("shortscalp", CalculationMode.Ticks, StopLoss, false);
CalculateOnBarClose = true;
}
/// <summary>
/// Called on each bar update event (incoming tick)
/// </summary>
protected override void OnBarUpdate()
{
// At the start of a new session
if (Bars.FirstBarOfSession)
{
// Store the strategy's prior cumulated realized profit and number of trades
priorTradesCount = Performance.AllTrades.Count;
priorTradesCumProfit = Performance.AllTrades.TradesPerformance.Points.CumProfit;
SetStopLoss("long", CalculationMode.Ticks, StopLoss, false);
SetStopLoss("short", CalculationMode.Ticks, StopLoss, false);
//Print("priorTradesCumProfit = " + priorTradesCumProfit);
/* NOTE: Using .AllTrades will include both historical virtual trades as well as real-time trades.
If you want to only count profits from real-time trades please use .RealtimeTrades. */
}
if( (Position.GetProfitLoss(Close[0], PerformanceUnit.Points) / TickSize) > trailStop
&& Position.MarketPosition == MarketPosition.Long )
{
SetStopLoss( "long", CalculationMode.Ticks, stopFromEntry, false);
}
if( (Position.GetProfitLoss(Close[0], PerformanceUnit.Points) / TickSize) > trailStop
&& Position.MarketPosition == MarketPosition.Short )
{
SetStopLoss( "short", CalculationMode.Ticks, stopFromEntry, false);
}
/*
if( Performance.AllTrades.TradesPerformance.Points.CumProfit - priorTradesCumProfit >= (-1*dailyPntLossStop)
&& Position.MarketPosition = MarketPosition.Long )
{
ExitLong("long");
}
if( Performance.AllTrades.TradesPerformance.Points.CumProfit - priorTradesCumProfit <= (-1*dailyPntLossStop)
&& Position.MarketPosition == MarketPosition.Short )
{
ExitShort("short");
}
*/
/*
if( (CrossBelow(Close, EMA(adxxLen)[0], 2))
&& Position.MarketPosition == MarketPosition.Long
)
{
ExitLong("long");
}
if( (CrossAbove(Close, EMA(adxxLen)[0], 2))
&& Position.MarketPosition == MarketPosition.Short )
{
ExitShort("short");
}
*/
/*
stopLossTemp = Convert.ToInt32((aTRLen*ATR(Close,10)[0])/TickSize);
//Print("stopLossTemp = " + stopLossTemp);
//Print("stopLoss = " + stopLoss);
if(stopLossTemp < stopLoss)
stopLoss = stopLossTemp; // if stopLoss from ATR is too big, use max stopLoss
SetStopLoss("long", CalculationMode.Ticks, StopLoss, false);
SetStopLoss("short", CalculationMode.Ticks, StopLoss, false);
SetStopLoss("longscalp", CalculationMode.Ticks, StopLoss, false);
SetStopLoss("shortscalp", CalculationMode.Ticks, StopLoss, false);
*/
// Condition set 1
if (CrossAbove(Close, ZZSwingIdentifierHigh(swingSize).SwingPointHigh[0], 1)
&& Close[0] > SMA(Open, MALen)[0]
&& Position.MarketPosition == MarketPosition.Flat
/*&& ADX(adxxLen)[0] > 20*/
/*&& ( (Bollinger(Close, 2.0, 20).Upper[0] - Bollinger(Close, 2.0, 20).Lower[0]) < adxxLen )*/
/*&& MACD(Close,adxxLen,26,9)[0] > MACD(Close,adxxLen,26,9).Avg[0]*/
&& High[0] < Bollinger(Close, bbstddev, bbLen ).Upper[0]
&& Performance.AllTrades.TradesPerformance.Points.CumProfit - priorTradesCumProfit >= (-1*dailyPntLossStop)
&& Time[0].Hour > 7
)
{
EnterLong(1, "long");
EnterLong(1, "longscalp");
}
// Condition set 2
if (CrossBelow(Close, ZZSwingIdentifierHigh(swingSize).SwingPointLow[0], 1)
&& Close[0] < SMA(Open, MALen)[0]
&& Position.MarketPosition == MarketPosition.Flat
/*&& ADX(adxxLen)[0] > 20*/
/*&& ( (Bollinger(Close, 2.0, 20).Upper[0] - Bollinger(Close, 2.0, 20).Lower[0]) < adxxLen )*/
/*&& MACD(Close,adxxLen,26,9)[0] < MACD(Close,adxxLen,26,9).Avg[0]*/
&& Low[0] > Bollinger(Close, bbstddev, bbLen).Lower[0]
&& Performance.AllTrades.TradesPerformance.Points.CumProfit - priorTradesCumProfit >= (-1*dailyPntLossStop)
&& Time[0].Hour > 7
)
{
EnterShort(1, "short");
EnterShort(1, "shortscalp");
}
//Print("current = " + (Performance.AllTrades.TradesPerformance.Points.CumProfit - priorTradesCumProfit));
//Print("logic = " + ((Performance.AllTrades.TradesPerformance.Points.CumProfit - priorTradesCumProfit) <= dailyPntLossStop));
}
#region Properties
[Description("Ticks")]
[GridCategory("Parameters")]
public int ProfitTarget1
{
get { return profitTarget1; }
set { profitTarget1 = Math.Max(1, value); }
}
[Description("Ticks")]
[GridCategory("Parameters")]
public int ProfitTarget2
{
get { return profitTarget2; }
set { profitTarget2 = Math.Max(1, value); }
}
[Description("")]
[GridCategory("Parameters")]
public int StopLoss
{
get { return stopLoss; }
set { stopLoss = Math.Max(1, value); }
}
[Description("")]
[GridCategory("Parameters")]
public int MALen
{
get { return mALen; }
set { mALen = Math.Max(1, value); }
}
[Description("")]
[GridCategory("Parameters")]
public int StopFromEntry
{
get { return stopFromEntry; }
set { stopFromEntry = value; }
}
[Description("")]
[GridCategory("Parameters")]
public double ATRLen
{
get { return aTRLen; }
set { aTRLen = Math.Max(1, value); }
}
[Description("")]
[GridCategory("Parameters")]
public int TrailStop
{
get { return trailStop; }
set { trailStop = Math.Max(1, value); }
}
[Description("")]
[GridCategory("Parameters")]
public int BbLen
{
get { return bbLen; }
set { bbLen = Math.Max(1, value); }
}
[Description("")]
[GridCategory("Parameters")]
public double Bbstddev
{
get { return bbstddev; }
set { bbstddev = Math.Max(1, value); }
}
[Description("")]
[GridCategory("Parameters")]
public double DailyPntLossStop
{
get { return dailyPntLossStop; }
set { dailyPntLossStop = Math.Max(1, value); }
}
[Description("swing size in ticks")]
[GridCategory("Parameters")]
public int SwingSize
{
get { return swingSize; }
set { swingSize = Math.Max(1, value); }
}
#endregion
}
}