-
Notifications
You must be signed in to change notification settings - Fork 32
/
COT1.mq5
352 lines (301 loc) · 13.3 KB
/
COT1.mq5
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
//+------------------------------------------------------------------+
//| COT1.mq5 |
//| Copyright 2024, Geraked |
//| https://github.com/geraked |
//+------------------------------------------------------------------+
#property copyright "Copyright 2024, Geraked"
#property link "https://github.com/geraked"
#property version "1.2"
#property description "A strategy using Commitments of Traders (COT) and Super Trend indicator"
#property description "Multiple Symbols-Daily 2021.01.01 - 2024.01.14"
#include <EAUtils.mqh>
#include <Cot.mqh>
#include <Sql.mqh>
#define PATH_ST "Indicators\\SuperTrend.ex5"
#define I_ST "::" + PATH_ST
#resource "\\" + PATH_ST
input group "Indicator Parameters"
input bool StEnable = false; // SuperTrend Enable
input double StMultiplier = 3; // SuperTrend Multiplier
input int StPeriod = 10; // SuperTrend Period
input ENUM_TIMEFRAMES IndTimeframe = PERIOD_M15; // Timeframe
input group "COT"
input ENUM_COT_CLASS_CO CotPrimaryClass = COT_CLASS_CO_DEALER; // COT Primary Class
input ENUM_COT_MODE CotPrimaryMode = COT_MODE_FO; // COT Primary Mode
input ENUM_COT_CLASS_CO CotSecondaryClass = COT_CLASS_CO_LEV; // COT Secondary Class
input ENUM_COT_MODE CotSecondaryMode = COT_MODE_FO; // COT Secondary Mode
input group "General"
input string OpenTime = "03:00"; // Open Time for Trades
input double TPCoef = 2.0; // TP Coefficient
input ENUM_SL SLType = SL_AR; // SL Type
input int SLLookback = 6; // SL Lookback
input int SLDev = 30; // SL Deviation (Points)
input bool Reverse = false; // Reverse Signal
input group "Risk Management"
input double Risk = 3.5; // Risk
input ENUM_RISK RiskMode = RISK_DEFAULT; // Risk Mode
input bool IgnoreSL = false; // Ignore SL
input bool IgnoreTP = true; // Ignore TP
input bool Trail = true; // Trailing Stop
input double TrailingStopLevel = 50; // Trailing Stop Level (%) (0: Disable)
input double EquityDrawdownLimit = 0; // Equity Drawdown Limit (%) (0: Disable)
input group "Strategy: Grid"
input bool Grid = true; // Grid Enable
input double GridVolMult = 1.2; // Grid Volume Multiplier
input double GridTrailingStopLevel = 0; // Grid Trailing Stop Level (%) (0: Disable)
input int GridMaxLvl = 20; // Grid Max Levels
input group "News"
input bool News = false; // News Enable
input ENUM_NEWS_IMPORTANCE NewsImportance = NEWS_IMPORTANCE_MEDIUM; // News Importance
input int NewsMinsBefore = 60; // News Minutes Before
input int NewsMinsAfter = 60; // News Minutes After
input int NewsStartYear = 0; // News Start Year to Fetch for Backtesting (0: Disable)
input group "Open Position Limit"
input bool OpenNewPos = true; // Allow Opening New Position
input bool MultipleOpenPos = false; // Allow Having Multiple Open Positions
input double MarginLimit = 1500; // Margin Limit (%) (0: Disable)
input int SpreadLimit = -1; // Spread Limit (Points) (-1: Disable)
input group "Auxiliary"
input int Slippage = 30; // Slippage (Points)
input int TimerInterval = 120; // Timer Interval (Seconds)
input ulong MagicNumber = 1004; // Magic Number
input ENUM_FILLING Filling = FILLING_DEFAULT; // Order Filling
int SignalCheckInterval = 15; // Minutes
GerEA ea;
string tcd;
MqlDateTime tcs;
datetime tc;
datetime signalLastCheck;
struct SSignal {
string symbol;
string type;
string clss;
string mode;
string gp;
string rp;
string date;
int cid;
int mid;
};
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
double ST(string symbol, int i = 0) {
int handle = iCustom(symbol, IndTimeframe, I_ST, StPeriod, StMultiplier, false);
if (i == -1) return -1;
return Ind(handle, i, 2);
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
void CheckForSignal() {
if (!OpenNewPos) return;
if (tcs.day_of_week != MONDAY && tcs.day_of_week != TUESDAY) return;
if (tc - signalLastCheck < SignalCheckInterval * 60) return;
if (tc < StringToTime(tcd + OpenTime)) return;
if (MarginLimit && PositionsTotal() > 0 && AccountInfoDouble(ACCOUNT_MARGIN_LEVEL) < MarginLimit) return;
if (!MultipleOpenPos && ea.OPTotal() > 0) return;
signalLastCheck = tc;
SSignal signals[];
if (!FetchSignals(CotPrimaryClass, CotPrimaryMode, signals, tc))
return;
if (!FetchSignals(CotSecondaryClass, CotSecondaryMode, signals, tc))
return;
for (int i = 0; i < ArraySize(signals); i++) {
string s = signals[i].symbol;
string stype = signals[i].type;
if (MarginLimit && PositionsTotal() > 0 && AccountInfoDouble(ACCOUNT_MARGIN_LEVEL) < MarginLimit) return;
if (!MultipleOpenPos && ea.OPTotal() > 0) return;
if (ea.OPTotal(s) > 0) continue;
if (hasDealCurrentWeek(ea.GetMagic(), s)) continue;
if (SpreadLimit != -1 && Spread(s) > SpreadLimit) continue;
int digits = (int) SymbolInfoInteger(s, SYMBOL_DIGITS);
if (StEnable) {
double st = ST(s);
if (st == -1) continue;
double h = iHigh(s, IndTimeframe, 0);
double l = iLow(s, IndTimeframe, 0);
double c = iClose(s, IndTimeframe, 0);
if (st < c && stype == "sell")
continue;
if (st > c && stype == "buy")
continue;
}
fixMultiCurrencies();
if (stype == "buy") {
double in = Ask(s);
double sl = BuySL(SLType, SLLookback, in, SLDev, 0, s, PERIOD_D1);
double tp = in + TPCoef * MathAbs(in - sl);
ea.BuyOpen(in, sl, tp, IgnoreSL, IgnoreTP, s);
Sleep(5000);
}
if (stype == "sell") {
double in = Bid(s);
double sl = SellSL(SLType, SLLookback, in, SLDev, 0, s, PERIOD_D1);
double tp = in - TPCoef * MathAbs(in - sl);
ea.SellOpen(in, sl, tp, IgnoreSL, IgnoreTP, s);
Sleep(5000);
}
}
}
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit() {
ea.Init();
ea.SetMagic(MagicNumber);
ea.risk = Risk * 0.01;
ea.reverse = Reverse;
ea.trailingStopLevel = TrailingStopLevel * 0.01;
ea.grid = Grid;
ea.gridVolMult = GridVolMult;
ea.gridTrailingStopLevel = GridTrailingStopLevel * 0.01;
ea.gridMaxLvl = GridMaxLvl;
ea.equityDrawdownLimit = EquityDrawdownLimit * 0.01;
ea.slippage = Slippage;
ea.news = News;
ea.newsImportance = NewsImportance;
ea.newsMinsBefore = NewsMinsBefore;
ea.newsMinsAfter = NewsMinsAfter;
ea.filling = Filling;
ea.riskMode = RiskMode;
if (RiskMode == RISK_FIXED_VOL || RiskMode == RISK_MIN_AMOUNT) ea.risk = Risk;
if (News) fetchCalendarFromYear(NewsStartYear);
if (!CotInit(CotGetReportType(CotPrimaryClass, CotPrimaryMode)))
return INIT_FAILED;
if (!CotInit(CotGetReportType(CotSecondaryClass, CotSecondaryMode)))
return INIT_FAILED;
EventSetTimer(TimerInterval);
return INIT_SUCCEEDED;
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason) {
EventKillTimer();
}
//+------------------------------------------------------------------+
//| Timer function |
//+------------------------------------------------------------------+
void OnTimer() {
datetime oldTc = tc;
tc = TimeCurrent(tcs);
tcd = TimeToString(tc, TIME_DATE) + " ";
if (tc == oldTc) return;
if (Trail) ea.CheckForTrail();
if (EquityDrawdownLimit) ea.CheckForEquity();
if (Grid) ea.CheckForGrid();
CheckForSignal();
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
int OnTesterInit() {
return INIT_FAILED;
}
void OnTesterDeinit() {
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
bool FetchSignals(ENUM_COT_CLASS_CO clss, ENUM_COT_MODE mode, SSignal &signals[], datetime time = 0) {
if (time == 0) time = TimeTradeServer();
datetime date_from, date_to;
CotGetDateRange(time, date_from, date_to);
ENUM_COT_REPORT report_type = CotGetReportType(clss, mode);
if (!CotIsAvailable(report_type, time)) {
PrintFormat("The COT report is not available: %s (%s - %s)", TimeToString(time), TimeToString(date_from, TIME_DATE), TimeToString(date_to, TIME_DATE));
return false;
}
string table = CotGetTableName(clss);
string ccol = CotGetColClause(clss);
string lcol = StringFormat("%s_positions_long", ccol);
string scol = StringFormat("%s_positions_short", ccol);
string lccol = StringFormat("change_in_%s_long", ccol);
string sccol = StringFormat("change_in_%s_short", ccol);
int fo = (mode == COT_MODE_FO) ? 1 : 0;
if (clss == COT_CLASS_CO_COM || clss == COT_CLASS_CO_NCOM || clss == COT_CLASS_CO_NR || StringFind(lcol, "dealer") != -1) {
lcol += "_all";
scol += "_all";
lccol += "_all";
sccol += "_all";
}
string sql = "WITH M AS ( "
"SELECT strftime('%Y.%m.%d', date, 'unixepoch') AS d, date, name, "
+ StringFormat("round(%s * 100.0 / (%s + %s), 2) AS lp, ", lcol, lcol, scol)
+ StringFormat("round(%s * 100.0 / (%s + %s), 2) AS sp, ", scol, lcol, scol)
+ StringFormat("%s AS lc, %s AS sc, ", lccol, sccol)
+ StringFormat("(%s - %s) AS cnp ", lccol, sccol)
+ StringFormat("FROM %s A ", table) +
"INNER JOIN contract C ON C.id = A.cid "
+ StringFormat("WHERE date >= %d AND date < %d ", date_from, date_to) +
"AND C.id IN ('232741','099741','096742','112741','090741','092741','097741','098662') "
+ StringFormat("AND fo = %d ", fo) +
"ORDER BY date DESC, name ASC LIMIT 8 "
") "
"SELECT t1.name AS green, t2.name AS red, t1.lp AS green_percent, t2.sp As red_percent, t1.d AS date FROM "
"(SELECT * FROM M WHERE cnp > 0 ORDER BY lp DESC LIMIT 2) AS t1, "
"(SELECT * FROM M WHERE cnp < 0 ORDER BY sp DESC LIMIT 2) AS t2 "
";";
int db = CotInitDb();
if (db == INVALID_HANDLE) return false;
string rows[], head[];
SqlSelect(db, sql, rows, head, '\t');
DatabaseClose(db);
string row[];
string g, r, symbol;
string postfix = StringLen(_Symbol) > 6 ? StringSubstr(_Symbol, 6) : "";
int nrows = ArraySize(rows);
int j = 0;
bool b;
for (int i = 0; i < nrows; i++) {
StringSplit(rows[i], '\t', row);
g = row[0];
r = row[1];
symbol = g + r + postfix;
j = ArraySize(signals);
if (SymbolExist(symbol, b)) {
ArrayResize(signals, j + 1);
signals[j].symbol = symbol;
signals[j].type = "buy";
} else {
symbol = r + g + postfix;
if (!SymbolExist(symbol, b)) continue;
ArrayResize(signals, j + 1);
signals[j].symbol = symbol;
signals[j].type = "sell";
}
signals[j].clss = CotGetDescription(clss);
signals[j].mode = CotGetDescription(mode);
signals[j].gp = row[2];
signals[j].rp = row[3];
signals[j].date = row[4];
signals[j].cid = clss;
signals[j].mid = mode;
}
return true;
}
//+------------------------------------------------------------------+
//| |
//+------------------------------------------------------------------+
bool hasDealCurrentWeek(ulong magic, string symbol) {
datetime date_from, date_to;
CotGetDateRange(TimeCurrent(), date_from, date_to);
date_from += 7 * PeriodSeconds(PERIOD_D1);
if (!HistorySelect(TimeCurrent() - 10 * PeriodSeconds(PERIOD_D1), TimeCurrent())) {
int err = GetLastError();
PrintFormat("%s error #%d : %s", __FUNCTION__, err, ErrorDescription(err));
return false;
}
int totalDeals = HistoryDealsTotal();
for (int i = totalDeals - 1; i >= 0; i--) {
ulong ticket = HistoryDealGetTicket(i);
if (HistoryDealGetInteger(ticket, DEAL_ENTRY) != DEAL_ENTRY_IN) continue;
if (HistoryDealGetInteger(ticket, DEAL_MAGIC) != magic) continue;
if (HistoryDealGetString(ticket, DEAL_SYMBOL) != symbol) continue;
datetime dealTime = (datetime) HistoryDealGetInteger(ticket, DEAL_TIME);
if (dealTime >= date_from) return true;
}
return false;
}
//+------------------------------------------------------------------+