-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSampleTimeFilter.cs
More file actions
416 lines (361 loc) · 15.5 KB
/
SampleTimeFilter.cs
File metadata and controls
416 lines (361 loc) · 15.5 KB
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
415
416
#region Using declarations
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
using System.Windows.Media;
using System.Xml.Serialization;
using NinjaTrader.Cbi;
using NinjaTrader.Gui;
using NinjaTrader.Gui.Chart;
using NinjaTrader.Gui.SuperDom;
using NinjaTrader.Gui.Tools;
using NinjaTrader.Data;
using NinjaTrader.NinjaScript;
using NinjaTrader.Core.FloatingPoint;
using NinjaTrader.NinjaScript.Indicators;
using NinjaTrader.NinjaScript.DrawingTools;
using System.Collections.ObjectModel;
#endregion
//This namespace holds Strategies in this folder and is required. Do not change it.
namespace NinjaTrader.NinjaScript.Strategies
{
public class OneR : Strategy
{
private double boll;
private double currentHigh;
private double currentLow;
private double previousHigh;
private double previousLow;
private double previousHigh2;
private double previousLow2;
private double twoBarPreviousHigh;
private double twoBarPreviousLow;
private double candleRange;
private double breakevenRange;
private double beStop;
private double initialAccountValue;
private double profitTarget = 1500; // Example profit target
private double lossLimit = -1100; // Example loss limit
private bool tradingEnabled = true;
private bool slbe;
private Bollinger bollingerBands;
private double prevCandleLow;
private double prevCandleHigh;
private double currentCandleHigh;
private double currentCandleLow;
private double nextCandleHigh ;
private double nextCandleLow;
private double stopLoss;
private double takeProfit;
private int contracts;
Collection<Cbi.Instrument> instrumentsToClose = new Collection<Instrument>();
protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
Description = @"Automatic Strategy for APlus Setups";
Name = "APlus1R";
Calculate = Calculate.OnBarClose;
EntriesPerDirection = 4;
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 = 3; // Need at least two bars to compare
IsInstantiatedOnEachOptimizationIteration = true;
RealtimeErrorHandling = RealtimeErrorHandling.StopCancelCloseIgnoreRejects;
}
else if (State == State.DataLoaded)
{
// Calculate initial account value
initialAccountValue = Account.Get(AccountItem.CashValue, Currency.UsDollar);
}
else if (State == State.Configure)
{
RealtimeErrorHandling = RealtimeErrorHandling.StopCancelCloseIgnoreRejects;
AddDataSeries("NQ", Data.BarsPeriodType.Minute, 5);
AddDataSeries("YM", Data.BarsPeriodType.Minute, 5);
AddDataSeries("RTY", Data.BarsPeriodType.Minute, 5);
bollingerBands = Bollinger(Close, 2, 20);
}
}
private int DefaultQuantity = 3;
protected override void OnBarUpdate()
{
if (ToTime(Time[0]) >= 70000 && ToTime(Time[0]) <= 150000)
{
//Handles daily profit/loss limit
if (tradingEnabled && Account.Get(AccountItem.CashValue, Currency.UsDollar) - initialAccountValue >= profitTarget)
{
// Close all positions
instrumentsToClose.Add(Instrument.GetInstrument("NQ"));
instrumentsToClose.Add(Instrument.GetInstrument("MNQ"));
Account.Flatten(instrumentsToClose);
tradingEnabled = false;
Print("Profit target reached. Trading disabled.");
return;
}
else if (tradingEnabled && Account.Get(AccountItem.CashValue, Currency.UsDollar) - initialAccountValue <= lossLimit)
{
// Close all positions
instrumentsToClose.Add(Instrument.GetInstrument("NQ"));
instrumentsToClose.Add(Instrument.GetInstrument("MNQ"));
Account.Flatten(instrumentsToClose);
tradingEnabled = false;
Print("Loss limit reached. Trading disabled.");
return;
}
if (BarsInProgress == 0 && CurrentBar > 2)
{
//Variables
prevCandleLow = Low[2];
prevCandleHigh = High[2];
currentCandleHigh = High[1];
currentCandleLow = Low[1];
nextCandleHigh = High[0];
nextCandleLow = Low[0];
currentHigh = High[0];
currentLow = Low[0];
previousHigh = High[1];
previousLow = Low[1];
previousHigh2 = High[2];
previousLow2 = Low[2];
twoBarPreviousHigh = High[2];
twoBarPreviousLow = Low[2];
boll = bollingerBands.Middle[0];
stopLoss = 30;
takeProfit = 10;
contracts = 1;
//Checks if high or low of previous candle is broken
bool highNotBreached = High[0] < previousHigh;
bool lowNotBreached = Low[0] > previousLow;
bool highNotBreached2 = High[1] > previousHigh2;
bool lowNotBreached2 = Low[1] < previousLow2;
//Checks to see if the current candle closed red or green
bool isGreenCandle = Close[0] > Open[0];
bool isRedCandle = Close[0] < Open[0];
//Checks if we have any open positions
bool isLong = Position.MarketPosition == MarketPosition.Long;
bool isShort = Position.MarketPosition == MarketPosition.Short;
if (highNotBreached && lowNotBreached) //Checks if the current candle is a 1bar
{
Print("current candle is 1bar at time: " + Time[1]); //For testing purposes
double candleRange = currentHigh - currentLow; // Calculate the range of the current candle
if (highNotBreached2 && !lowNotBreached2) //Checks if candle before 1bar is a 2bar
{
Print("previous candle is a 2bar at time: " + Time[2]);
if (isGreenCandle && !isLong && !isShort) //Checks to see if candle is bullish and there are no active trades
{
Print("test");
if (currentLow <= boll && currentHigh >= boll) //Checks to see if candle is within Bollinger Band
{
bool isShortFVG = (nextCandleHigh < prevCandleLow) && (currentCandleHigh < prevCandleLow);
Print("boll" + bollingerBands.Middle[0]);
Print(currentLow);
Print(currentHigh);
candleRange = Math.Abs(currentHigh - currentLow);
breakevenRange = candleRange;
double stopPrice = currentLow;
double limitPrice = currentHigh;
beStop = limitPrice;
Print(currentHigh);
Print(currentLow);
Print(currentHigh - currentLow);
//if (candleRange < 20)
//{
//Print("25");
//SetProfitTarget(@"BuyMarketOrder", CalculationMode.Price, candleRange + currentHigh);
//SetStopLoss(@"BuyMarketOrder", CalculationMode.Price, stopPrice, false);
//EnterLongStopLimit(3, limitPrice, limitPrice, @"BuyMarketOrder");
//SetProfitTarget(@"BuyMarketOrder2", CalculationMode.Price, 2*candleRange + currentHigh);
//SetStopLoss(@"BuyMarketOrder2", CalculationMode.Price, stopPrice, false);
//EnterLongStopLimit(3, limitPrice, limitPrice, @"BuyMarketOrder2");
//}
slbe = true;
SetProfitTarget(@"BuyMarketOrder", CalculationMode.Price, takeProfit + currentHigh);
SetStopLoss(@"BuyMarketOrder", CalculationMode.Price, limitPrice - stopLoss, false);
EnterLongStopLimit(contracts, limitPrice, limitPrice, @"BuyMarketOrder");
//SetProfitTarget(@"BuyMarketOrder2", CalculationMode.Price, 50 + currentHigh);
//SetStopLoss(@"BuyMarketOrder2", CalculationMode.Price, limitPrice - 20, false);
//EnterLongStopLimit(3, limitPrice, limitPrice, @"BuyMarketOrder2");
}
}
else if (isRedCandle && !isLong && !isShort)//(isRedCandle && !isLong && !isShort) //Checks to see if candle is bearish and there are no active trades
{
Print("test");
if (currentLow <= bollingerBands.Middle[0] && currentHigh >= bollingerBands.Middle[0]) //Checks to see if candle is within Bollinger Band
{
Print("boll" + bollingerBands.Middle[0]);
Print(currentLow);
Print(currentHigh);
candleRange = Math.Abs(currentHigh - currentLow);
breakevenRange = candleRange;
double stopPrice = currentHigh;
double limitPrice = currentLow;
beStop = limitPrice;
slbe = true;
SetProfitTarget(@"SellMarketOrder", CalculationMode.Price, currentLow - takeProfit);
SetStopLoss(@"SellMarketOrder", CalculationMode.Price, stopLoss + limitPrice, false);
EnterShortStopLimit(contracts, limitPrice, limitPrice, @"SellMarketOrder");
}
}
}
else if (!highNotBreached2 && lowNotBreached2) //Checks if candle before 1bar is a 2bar
{
Print("previous candle is a 2bar at time: " + Time[2]);
if (isGreenCandle && !isLong && !isShort) //Checks to see if candle is bullish and flat
{
Print("test");
boll = bollingerBands.Middle[0];
if (currentLow <= boll && currentHigh >= boll) //Checks to see if candle is within Bollinger Band
{
Print("boll" + bollingerBands.Middle[0]);
Print(currentLow);
Print(currentHigh);
candleRange = Math.Abs(currentHigh - currentLow);
breakevenRange = candleRange;
double stopPrice = currentLow;
double limitPrice = currentHigh;
beStop = limitPrice;
Print(currentHigh);
Print(currentLow);
Print(currentHigh - currentLow);
slbe = true;
SetProfitTarget(@"BuyMarketOrder", CalculationMode.Price, takeProfit + currentHigh);
SetStopLoss(@"BuyMarketOrder", CalculationMode.Price, limitPrice - stopLoss, false);
EnterLongStopLimit(contracts, limitPrice, limitPrice, @"BuyMarketOrder");
}
}
else if (isRedCandle && !isLong && !isShort) //Checks to see if candle is bearish and flat
{
Print("test");
if (currentLow <= bollingerBands.Middle[0] && currentHigh >= bollingerBands.Middle[0]) //Checks to see if candle is within Bollinger Band
{
Print("boll" + bollingerBands.Middle[0]);
Print(currentLow);
Print(currentHigh);
candleRange = Math.Abs(currentHigh - currentLow);
breakevenRange = candleRange;
double stopPrice = currentHigh;
double limitPrice = currentLow;
beStop = limitPrice;
slbe = true;
SetProfitTarget(@"SellMarketOrder", CalculationMode.Price, currentLow - takeProfit);
SetStopLoss(@"SellMarketOrder", CalculationMode.Price, stopLoss + limitPrice, false);
EnterShortStopLimit(contracts, limitPrice, limitPrice, @"SellMarketOrder");
}
}
}
}
else if (!highNotBreached && lowNotBreached) //Checks if the current candle is a 2up
{
if (isRedCandle && !isLong && !isShort) //Checks if 2up failed and flat
{
Print("test");
if (currentLow <= bollingerBands.Middle[0] && currentHigh >= bollingerBands.Middle[0]) //Checks to see if candle is within Bollinger Band
{
Print("boll" + bollingerBands.Middle[0]);
Print(currentLow);
Print(currentHigh);
Print("failed 2up at" + Time[0]);
candleRange = Math.Abs(currentHigh - currentLow);
breakevenRange = candleRange;
double stopPrice = currentHigh;
double limitPrice = currentLow;
beStop = limitPrice;
slbe = true;
SetProfitTarget(@"SellMarketOrder", CalculationMode.Price, currentLow - takeProfit);
SetStopLoss(@"SellMarketOrder", CalculationMode.Price, stopLoss + limitPrice, false);
EnterShortStopLimit(contracts, limitPrice, limitPrice, @"SellMarketOrder");
}
}
}
else if (highNotBreached && !lowNotBreached) //Checks if current candle is a 2down
{
if (isGreenCandle && !isLong && !isShort) //Checks if 2down failed and flat
{
Print("test");
if (currentLow <= bollingerBands.Middle[0] && currentHigh >= bollingerBands.Middle[0]) //Checks to see if candle is within Bollinger Band
{
Print("boll" + bollingerBands.Middle[0]);
Print(currentLow);
Print(currentHigh);
candleRange = Math.Abs(currentHigh - currentLow);
breakevenRange = candleRange;
double stopPrice = currentLow;
double limitPrice = currentHigh;
beStop = limitPrice;
slbe = true;
SetProfitTarget(@"BuyMarketOrder", CalculationMode.Price, takeProfit + currentHigh);
SetStopLoss(@"BuyMarketOrder", CalculationMode.Price, limitPrice - stopLoss, false);
EnterLongStopLimit(contracts, limitPrice, limitPrice, @"BuyMarketOrder");
}
}
}
//Print(currentLow);
//Print(currentHigh);
//Print(beStop);
//Print(breakevenRange);
//Stoploss Breakeven Logic
if (isLong && slbe)
{
if (currentHigh >= 5 + beStop)
{
Print("high crossed");
SetStopLoss(@"BuyMarketOrder", CalculationMode.Price, beStop, true);
SetStopLoss(@"BuyMarketOrder2", CalculationMode.Price, beStop, true);
}
}
else if (isLong)
{
if (currentHigh >= breakevenRange + beStop)
{
Print("high crossed");
SetStopLoss(@"BuyMarketOrder", CalculationMode.Price, beStop, true);
SetStopLoss(@"BuyMarketOrder2", CalculationMode.Price, beStop, true);
}
}
if (isShort)
{
if (currentLow <= beStop - breakevenRange)
{
Print("low crossed");
SetStopLoss(@"SellMarketOrder", CalculationMode.Price, beStop, true);
SetStopLoss(@"SellMarketOrder2", CalculationMode.Price, beStop, true);
}
}
else if (isShort && slbe)
{
if (currentLow <= beStop - 5)
{
Print("low crossed");
SetStopLoss(@"SellMarketOrder", CalculationMode.Price, beStop, true);
SetStopLoss(@"SellMarketOrder2", CalculationMode.Price, beStop, true);
}
}
}
if (BarsInProgress == 0 && CurrentBar >= 3)
{
previousHigh = High[1];
previousLow = Low[1];
twoBarPreviousHigh = High[2];
twoBarPreviousLow = Low[2];
}
}
}
}
}