-
Notifications
You must be signed in to change notification settings - Fork 5
/
ThaCrossover.cs
414 lines (351 loc) · 15.6 KB
/
ThaCrossover.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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
#region Using declarations
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Threading.Tasks;
using System.Windows.Media;
using NinjaTrader.Cbi;
using NinjaTrader.NinjaScript.Indicators;
using System.Net.Http;
using System.Globalization;
using GuerillaTraderBridge;
#endregion
//This namespace holds Strategies in this folder and is required. Do not change it.
namespace NinjaTrader.NinjaScript.Strategies
{
public class ThaCrossover : Strategy
{
#region Props
private Brush BullishBrush = Brushes.DarkBlue;
private Brush BearishBrush = Brushes.HotPink;
private Brush NeutralBrush = Brushes.Gray;
private Series<double> diffSeries;
private Series<double> highLowSeries;
private EMA fastMaIndicator;
private EMA slowMaIndicator;
private MyRange myRange;
private double tickRange;
private bool openPosition = false;
private Bridge guerillaTraderBridge = new Bridge();
#endregion
#region OrderTracking
#region RecordTradeProps
private void RecordTradeProps(Execution execution)
{
if (execution.Order != null && execution.Order.OrderState == OrderState.Filled)
{
//TradingAccountId = 8;
//ES = 1
//NQ = 4
if (!openPosition)
{
this.guerillaTraderBridge.Reset();
this.guerillaTraderBridge.ot_entryTimestamp = execution.Order.Time;
this.guerillaTraderBridge.ot_tickRange = tickRange;
this.guerillaTraderBridge.ot_entryPrice = execution.Order.AverageFillPrice;
this.guerillaTraderBridge.ot_size = execution.Order.Quantity;
this.guerillaTraderBridge.ot_tradeType = execution.Order.Name == "Buy" ? (int)TradeTypes.LongFuture : (int)TradeTypes.ShortFuture;
this.guerillaTraderBridge.ot_trigger = (int)TradeTriggers.Crossover;
this.guerillaTraderBridge.ot_trend = execution.Order.Name == "Buy" ? (int)TrendTypes.Bullish : (int)TrendTypes.Bearish;
this.guerillaTraderBridge.ot_diff = diffSeries[0];
this.guerillaTraderBridge.ot_diffXX = DiffXX;
this.guerillaTraderBridge.ot_diffXDiff = diffSeries[DiffXX] - diffSeries[0];
this.guerillaTraderBridge.ot_diffXSlope = this.guerillaTraderBridge.ot_diffXDiff / DiffXX;
this.guerillaTraderBridge.ot_diffXChange = this.guerillaTraderBridge.ot_diffXDiff / diffSeries[0];
this.openPosition = true;
}
else if (openPosition)
{
this.guerillaTraderBridge.ot_exitTimestamp = execution.Order.Time;
this.guerillaTraderBridge.ot_exitPrice = execution.Order.AverageFillPrice;
if (execution.Order.Instrument.MasterInstrument.Name == "ES")
{
this.guerillaTraderBridge.ot_marketId = 1;
this.guerillaTraderBridge.ot_commissions = 4.04;
}
else if (execution.Order.Instrument.MasterInstrument.Name == "NQ")
{
this.guerillaTraderBridge.ot_marketId = 4;
this.guerillaTraderBridge.ot_commissions = 4.04;
}
else if (execution.Order.Instrument.MasterInstrument.Name == "6E")
{
this.guerillaTraderBridge.ot_marketId = 7;
this.guerillaTraderBridge.ot_commissions = 5.32;
}
if (this.guerillaTraderBridge.ot_tradeType == (int)TradeTypes.LongFuture)
{
this.guerillaTraderBridge.ot_profitLoss = ((this.guerillaTraderBridge.ot_exitPrice - this.guerillaTraderBridge.ot_entryPrice) * execution.Order.Instrument.MasterInstrument.PointValue) * this.guerillaTraderBridge.ot_size;
}
else if (this.guerillaTraderBridge.ot_tradeType == (int)TradeTypes.ShortFuture)
{
this.guerillaTraderBridge.ot_profitLoss = ((this.guerillaTraderBridge.ot_entryPrice - this.guerillaTraderBridge.ot_exitPrice) * execution.Order.Instrument.MasterInstrument.PointValue) * this.guerillaTraderBridge.ot_size;
}
this.guerillaTraderBridge.ot_adjProfitLoss = this.guerillaTraderBridge.ot_profitLoss - this.guerillaTraderBridge.ot_commissions;
this.guerillaTraderBridge.ot_profitLossPerContract = this.guerillaTraderBridge.ot_adjProfitLoss / this.guerillaTraderBridge.ot_size;
this.openPosition = false;
if (State == State.Realtime && this.TradingAccountId > 0)
{
Bridge.SaveTradeFromNt(this.guerillaTraderBridge.ot_marketId, this.guerillaTraderBridge.ot_tradeType, this.guerillaTraderBridge.ot_trigger, this.guerillaTraderBridge.ot_trend, this.guerillaTraderBridge.ot_diff, this.guerillaTraderBridge.ot_diffXX, this.guerillaTraderBridge.ot_diffXDiff, this.guerillaTraderBridge.ot_diffXSlope, this.guerillaTraderBridge.ot_diffXChange,
this.guerillaTraderBridge.ot_tickRange, this.guerillaTraderBridge.ot_entryTimestamp, this.guerillaTraderBridge.ot_entryPrice, this.guerillaTraderBridge.ot_exitTimestamp, this.guerillaTraderBridge.ot_exitPrice, this.guerillaTraderBridge.ot_commissions, this.guerillaTraderBridge.ot_profitLoss,
this.guerillaTraderBridge.ot_adjProfitLoss, this.guerillaTraderBridge.ot_size, this.guerillaTraderBridge.ot_profitLossPerContract, this.TradingAccountId, false);
}
}
}
}
#endregion
#endregion
#region Event Handler - OnStateChange
protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
Description = @"Enter the description for your new custom Strategy here.";
Name = "ThaCrossover";
Calculate = Calculate.OnBarClose;
EntriesPerDirection = 1;
EntryHandling = EntryHandling.AllEntries;
IsExitOnSessionCloseStrategy = true;
ExitOnSessionCloseSeconds = 30;
IsFillLimitOnTouch = false;
MaximumBarsLookBack = MaximumBarsLookBack.TwoHundredFiftySix;
OrderFillResolution = OrderFillResolution.Standard;
Slippage = 0;
StartBehavior = StartBehavior.WaitUntilFlat;
TimeInForce = TimeInForce.Gtc;
TraceOrders = false;
RealtimeErrorHandling = RealtimeErrorHandling.StopCancelClose;
StopTargetHandling = StopTargetHandling.PerEntryExecution;
BarsRequiredToTrade = 20;
DefaultQuantity = 1;
// Disable this property for performance gains in Strategy Analyzer optimizations
// See the Help Guide for additional information
IsInstantiatedOnEachOptimizationIteration = false;
FastMaPeriod = 10;
SlowMaPeriod = 20;
TickRangePeriod = 15;
MinMaDiff = 0.4;
MaxMaDiff = 10;
MinTickRange = 0;
MaxTickRange = 30;
GoLong = true;
GoShort = true;
FireAlerts = false;
DiffXX = 5;
ProfitTarget = 5;
StopLoss = 12;
TradingAccountId = 0;
BailPeriod = 3;
GoPeriod = 3;
RangePeriod = 20;
MinRange = 8.5;
}
else if (State == State.Configure)
{
//SetProfitTarget(CalculationMode.Ticks, this.ProfitTarget);
//SetStopLoss(CalculationMode.Ticks, this.StopLoss);
SetOrderQuantity = SetOrderQuantity.DefaultQuantity;
fastMaIndicator = EMA(FastMaPeriod);
slowMaIndicator = EMA(SlowMaPeriod);
myRange = MyRange(RangePeriod, MinRange);
slowMaIndicator.Plots[0].Brush = Brushes.White;
slowMaIndicator.Plots[0].Width = 2;
fastMaIndicator.Plots[0].Width = 2;
AddChartIndicator(fastMaIndicator);
AddChartIndicator(slowMaIndicator);
}
else if (State == State.DataLoaded)
{
diffSeries = new Series<double>(this);
highLowSeries = new Series<double>(this);
//this.guerillaTraderBridge.Reset();
}
}
#endregion
#region Order Events
protected override void OnExecutionUpdate(Cbi.Execution execution, string executionId, double price, int quantity,
Cbi.MarketPosition marketPosition, string orderId, DateTime time)
{
RecordTradeProps(execution);
}
// protected override void OnOrderUpdate(Cbi.Order order, double limitPrice, double stopPrice,
// int quantity, int filled, double averageFillPrice,
// Cbi.OrderState orderState, DateTime time, Cbi.ErrorCode error, string comment)
//{
//}
//protected override void OnPositionUpdate(Cbi.Position position, double averagePrice,
// int quantity, Cbi.MarketPosition marketPosition)
//{
//}
#endregion
#region Event Handler - OnBarUpdate
protected override void OnBarUpdate()
{
if (FastMaPeriod >= SlowMaPeriod) return;
if (CurrentBar < SlowMaPeriod) return;
double fastMa = fastMaIndicator[0];
double slowMa = slowMaIndicator[0];
diffSeries[0] = fastMa - slowMa;
highLowSeries[0] = (High[0] - Low[0]) / TickSize;
tickRange = EMA(highLowSeries, TickRangePeriod)[0];
if (CurrentBar < (SlowMaPeriod + Math.Max(Math.Max(GoPeriod, BailPeriod), DiffXX))) return;
bool validTickRange = tickRange > MinTickRange && tickRange < MaxTickRange;
Brush trendBrush = (diffSeries[0] < MinMaDiff && diffSeries[0] > -MinMaDiff) ? NeutralBrush : fastMa < slowMa ? BearishBrush : BullishBrush;
fastMaIndicator.PlotBrushes[0][0] = trendBrush;
bool crossAboveBull = diffSeries[0] >= MinMaDiff && diffSeries[1] < MinMaDiff;
bool crossBelowBull = diffSeries[0] < MinMaDiff && diffSeries[1] >= MinMaDiff;
bool crossAboveBear = diffSeries[0] > -MinMaDiff && diffSeries[1] <= -MinMaDiff;
bool crossBelowBear = diffSeries[0] <= -MinMaDiff && diffSeries[1] > -MinMaDiff;
bool goLong = true;
bool goShort = true;
if(GoPeriod > 0)
{
for(int i = 0; i < GoPeriod; i++)
{
if(diffSeries[i] < diffSeries[i+1])
{
goLong = false;
}
if(diffSeries[i] > diffSeries[i+1])
{
goShort = false;
}
}
}
else
{
goLong = false;
goShort = false;
}
goLong = goLong && diffSeries[0] >= MinMaDiff;
goShort = goShort && diffSeries[0] <= -MinMaDiff;
bool bailLong = true;
bool bailShort = true;
if(BailPeriod > 0)
{
for(int i = 0; i < BailPeriod; i++)
{
if(diffSeries[i] > diffSeries[i+1])
{
bailLong = false;
}
if(diffSeries[i] < diffSeries[i+1])
{
bailShort = false;
}
}
}
else
{
bailLong = false;
bailShort = false;
}
if (!this.openPosition && (crossAboveBull || goLong))
{
EnterLong();
}
else if (!this.openPosition && (crossBelowBear || goShort))
{
EnterShort();
}
else if (this.openPosition && (crossBelowBull || (this.guerillaTraderBridge.ot_tradeType == 1 && bailLong)))
{
ExitLong();
}
else if (this.openPosition && (crossAboveBear || (this.guerillaTraderBridge.ot_tradeType == 2 && bailShort)))
{
ExitShort();
}
}
#endregion
#region Properties
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name = "FastMaPeriod", Order = 1, GroupName = "Parameters")]
public int FastMaPeriod
{ get; set; }
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name = "SlowMaPeriod", Order = 2, GroupName = "Parameters")]
public int SlowMaPeriod
{ get; set; }
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name = "TickRangePeriod", Order = 3, GroupName = "Parameters")]
public int TickRangePeriod
{ get; set; }
[NinjaScriptProperty]
[Range(0, double.MaxValue)]
[Display(Name = "MinMaDiff", Order = 4, GroupName = "Parameters")]
public double MinMaDiff
{ get; set; }
[NinjaScriptProperty]
[Range(0, double.MaxValue)]
[Display(Name = "MaxMaDiff", Order = 5, GroupName = "Parameters")]
public double MaxMaDiff
{ get; set; }
[NinjaScriptProperty]
[Range(0, double.MaxValue)]
[Display(Name = "MinTickRange", Order = 6, GroupName = "Parameters")]
public double MinTickRange
{ get; set; }
[NinjaScriptProperty]
[Range(0, double.MaxValue)]
[Display(Name = "MaxTickRange", Order = 7, GroupName = "Parameters")]
public double MaxTickRange
{ get; set; }
[NinjaScriptProperty]
[Display(Name = "GoLong", Order = 8, GroupName = "Parameters")]
public bool GoLong
{ get; set; }
[NinjaScriptProperty]
[Display(Name = "GoShort", Order = 9, GroupName = "Parameters")]
public bool GoShort
{ get; set; }
[NinjaScriptProperty]
[Display(Name = "FireAlerts", Order = 10, GroupName = "Parameters")]
public bool FireAlerts
{ get; set; }
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name = "DiffXX", Order = 11, GroupName = "Parameters")]
public int DiffXX
{ get; set; }
[NinjaScriptProperty]
[Range(0, double.MaxValue)]
[Display(Name = "ProfitTarget", Order = 12, GroupName = "Parameters")]
public double ProfitTarget
{ get; set; }
[NinjaScriptProperty]
[Range(0, double.MaxValue)]
[Display(Name = "StopLoss", Order = 13, GroupName = "Parameters")]
public double StopLoss
{ get; set; }
[NinjaScriptProperty]
[Range(0, int.MaxValue)]
[Display(Name = "TradingAccountId", Order = 14, GroupName = "Parameters")]
public int TradingAccountId
{ get; set; }
[NinjaScriptProperty]
[Range(0, int.MaxValue)]
[Display(Name = "BailPeriod", Order = 15, GroupName = "Parameters")]
public int BailPeriod
{ get; set; }
[NinjaScriptProperty]
[Range(0, int.MaxValue)]
[Display(Name = "GoPeriod", Order = 16, GroupName = "Parameters")]
public int GoPeriod
{ get; set; }
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name = "RangePeriod", Order = 17, GroupName = "Parameters")]
public int RangePeriod
{ get; set; }
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name = "MinRange", Order = 18, GroupName = "Parameters")]
public double MinRange
{ get; set; }
#endregion
}
}