-
Notifications
You must be signed in to change notification settings - Fork 1
/
GREEZLY_2007.mq4
1239 lines (915 loc) · 43.6 KB
/
GREEZLY_2007.mq4
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------------
// GREEZLY_2007s.mq4 |
// Copyright © 2007, GREEZLY |
// e-mail: greezlyfx@mail.ru ICQ: 491769515 |
//------------------------------------------------------------------
#property copyright "Copyright © 2007, GREEZLY"
#property link ""
// магические номера ордеров: 777AABB
// AA - собственный тип ордера, BB - резерв
#define MN_Usual 7770000 // обычный ордер
#define MN_Averaging 7770100 // усредняющий ордер
#define MN_Flating 7770200 // флэтовый ордер, открытый по индикатору Flat для мелкого профита внутри канала
#define MN_Speed 7770300 // ордер, открытый по индикатору Speed при быстром и мощном движении цены
// ВНЕШНИЕ ПЕРЕМЕННЫЕ
extern double TakeProfitB = 12;
extern double TakeProfitS = 12;
extern double StopLossB = 1080;
extern double StopLossS = 780;
extern double TakeProfitForLock = 0;
extern double StopLossForLock = 134;
extern double TrailingStop = 0;
extern double StepTrailingStop = 5; // шаг чувствительности для сдвига TrailingStop
extern double BuyStopLevel = 22; // < 0 - не использовать
extern double BuyLimitLevel = 17;
extern double SellStopLevel = 78;
extern double SellLimitLevel = 83;
extern int UseOneWayRealOrdersB = 1; // использовать однонаправленные открытые позиции BUY
extern int UseOneWayRealOrdersS = 1; // использовать однонаправленные открытые позиции SELL
extern double MinDistanceRealOrdersB = 390; // минимально допустимое расстояние между однонаправленными открытыми позициями BUY
extern double MinDistanceRealOrdersS = 590; // минимально допустимое расстояние между однонаправленными открытыми позициями SELL
extern int UseAveragingTakeProfitB = 0; // использовать усредняющий TakeProfit для однонаправленных позиций BUY
extern int UseAveragingTakeProfitS = 0; // использовать усредняющий TakeProfit для однонаправленных позиций SELL
extern int UseSpeedIndicator = 1; // использовать индикатор скорости
extern int iSP_CountBars = 2; // кол-во анализируемых значений индикатора Speed
extern int iSP_CountTimeFrames = 2; // кол-во анализируемых периодов (тайм-фреймов) индикатора Speed
extern int iSP_StartTimeFrame = 1; // начальный (наименьший) анализируемый период (тайм-фрейм) для индикатора Speed
extern int iSP_UseForOpenRealOrders = 0; // использовать индикатор скорости для открытия реальных ордеров
extern double iSP_MinValueForOpenRealOrders = 0.0005; // минимальное значение индикатора скорости для открытия реальных ордеров
extern double iSP_UseMinTakeProfit = 1; // использовать минимальный тейк-профит для ордеров, открываемых по индикатору Speed
extern double iSP_StopLoss = 35; // стоп-лосс для ордеров, открываемых по индикатору Speed
extern int CountHighLowLimits = 2; // количество используемых ограничений HighLowLimit: "не покупать сверху, не продавать снизу"
extern double iHL_LimitDistance1 = 150; // максимально допустимое отклонение цены от Low/High для возможности открытия Buy/Sell
extern int iHL_Period1 = 4; // период (тайм-фрейм) для анализа HighLow (час)
extern int iHL_CountBars1 = 24; // кол-во анализируемых значений периода iHL_Period для определения Low/High
extern double iHL_LimitDistance2 = 700; // второй блок ограничений HighLowLimit
extern int iHL_Period2 = 6; // (день)
extern int iHL_CountBars2 = 15; //
extern int UseFlatIndicator = 1; // использовать флэт индикатор для открытия ордеров
extern double iFL_MinWidthCanal = 20; // минимально допустимая ширина канала
extern double iFL_MaxWidthCanal = 40; // максимально допустимая ширина канала
extern double iFL_MinExtremumsCount = 2; // минимально необходимое кол-во экстремумов в канале с каждой стороны (экстремумом считаем значения ниже 1/4 и выше 3/4 ширины канала)
extern int iFL_Period = 1; // период (тайм-фрейм) для анализа Flat (пятиминутки)
extern int iFL_CountBars = 12; // кол-во анализируемых значений периода iFL_Period
extern double iFL_StopLoss = 25; // стоп-лосс для ордеров, открываемых по индикатору Flat
extern double iFL_LotSizeMultiply = 2; // мультипликатор размера лота для ордеров, открываемых по индикатору Flat
extern int UseBuy = 1; // использовать Buy
extern int UseSell = 1; // использовать Sell
extern int OpenRealOrders = 1; // открывать реальные ордера по рынку
extern double Risk = 0.1; // уровень риска, размер лота от остатка свободных средств, если 0, торговля ведется минимальным заданным лотом
extern double BuyDenyLevel = 177; // граничный уровень открытия ордеров BUY (выше этого уровня ордера не открываются)
extern double SellDenyLevel = 162; // граничный уровень открытия ордеров SELL (ниже этого уровня ордера не открываются)
extern int MaxOrdersCount = 3; // ограничение на кол-во ордеров (0 - не ограничивать)
extern double MinDistanceDeferFromPrice = 10; // минимально допустимое расстояние цены открываемых отложенных ордеров от текущей цены
extern double MaxDistanceDeferFromPrice = 50; // максимально допустимое расстояние цены открываемых отложенных ордеров от текущей цены
extern double MinDistanceBetweenDefer = 90; // минимально допустимое расстояние между однонаправленными отложенными ордерами
extern double MinLotSize = 0.1;
extern double MaxLotSize = 5;
extern double StepLotSize = 0.1;
bool PrintComments = false; // выводить комментарии при торговле
int DetailComments = 0; // детализация комментариев (0 - самые важные)
// ВНУТРЕННИЕ ПЕРЕМЕННЫЕ
int _OP_BUY = 0, _OP_SELL = 1, _OP_BUYLIMIT = 2, _OP_SELLLIMIT = 3, _OP_BUYSTOP = 4, _OP_SELLSTOP = 5;
int _Period[10] = {PERIOD_M1, PERIOD_M5, PERIOD_M15, PERIOD_M30, PERIOD_H1, PERIOD_H4, PERIOD_D1, PERIOD_W1, PERIOD_MN1, 0};
double _Point, MI_MODE_STOPLEVEL;
int Counts[6];
double MinPrices[6], MaxPrices[6];
double SumLots[6];
double miSpeed;
double miAccelerator;
double iHL_Low[2], iHL_High[2];
double _iHL_LimitDistance;
bool iFL_IsFlat;
double iFL_Low, iFL_High, iFL_Width;
int glGetNormalOrderType(int _OrderType)
{
switch(_OrderType)
{
case OP_BUY: return (_OP_BUY);
case OP_SELL: return (_OP_SELL);
case OP_BUYLIMIT: return (_OP_BUYLIMIT);
case OP_BUYSTOP: return (_OP_BUYSTOP);
case OP_SELLLIMIT: return (_OP_SELLLIMIT);
case OP_SELLSTOP: return (_OP_SELLSTOP);
default: return(-1);
}
return(-1);
}
int init()
{
MI_MODE_STOPLEVEL = MarketInfo(Symbol(), MODE_STOPLEVEL);
if(TakeProfitB != 0) TakeProfitB = MathMax(MI_MODE_STOPLEVEL, TakeProfitB);
if(TakeProfitS != 0) TakeProfitS = MathMax(MI_MODE_STOPLEVEL, TakeProfitS);
if(StopLossB != 0) StopLossB = MathMax(MI_MODE_STOPLEVEL, StopLossB);
if(StopLossS != 0) StopLossS = MathMax(MI_MODE_STOPLEVEL, StopLossS);
if(iSP_StopLoss != 0) iSP_StopLoss = MathMax(MI_MODE_STOPLEVEL, iSP_StopLoss);
if(iFL_StopLoss != 0) iFL_StopLoss = MathMax(MI_MODE_STOPLEVEL, iFL_StopLoss);
if(TakeProfitForLock != 0) TakeProfitForLock = MathMax(MI_MODE_STOPLEVEL, TakeProfitForLock);
if(StopLossForLock != 0) StopLossForLock = MathMax(MI_MODE_STOPLEVEL, StopLossForLock);
if(UseSpeedIndicator == 1)
{
if(iSP_CountBars < 2) iSP_CountBars = 2;
if(iSP_CountBars > 10) iSP_CountBars = 10;
if(iSP_CountTimeFrames < 1) iSP_CountTimeFrames = 1;
if(iSP_CountTimeFrames > 5) iSP_CountTimeFrames = 5;
}
if(MaxOrdersCount < 0) MaxOrdersCount = 0;
MinLotSize = MathMax(MarketInfo(Symbol(), MODE_MINLOT), MinLotSize);
MaxLotSize = MathMin(MarketInfo(Symbol(), MODE_MAXLOT), MaxLotSize);
StepLotSize = MathMax(MarketInfo(Symbol(), MODE_LOTSTEP), StepLotSize);
return(0);
}
int deinit()
{
return(0);
}
int start()
{
int _OrderType, _OrderMagicNumber, NormalOrderType;
double Lots, _Volume, _OrderOpenPrice, _OrderLots, _OrderStopLoss, _OrderTakeProfit;
double CurrentPrice, CurrentFigure, NearestRealPrice, NearestDeferPrice, NeedDistance;
double _Low, _High;
int ticket, type, typedefer;
int i, j, k, total;
bool MayOpenDeferOrder, MayOpenRealOrder;
string typestr;
_Point = 1.0 / MathPow(10, Digits);
miAccelerator = 0;
miSpeed = 0;
if(UseSpeedIndicator == 1)
{
double iSP_Val[10][10];
int iSP_Dir[10];
double iPrice1, iPrice2;
for(i = 0; i < iSP_CountTimeFrames; i++)
{
for(j = 0; j < iSP_CountBars; j++)
{
iPrice1 = (iHigh(NULL, _Period[iSP_StartTimeFrame + i], j + 2) + iLow(NULL, _Period[iSP_StartTimeFrame + i], j + 2) + iClose(NULL, _Period[iSP_StartTimeFrame + i], j + 2) * 2) / 4;
iPrice2 = (iHigh(NULL, _Period[iSP_StartTimeFrame + i], j + 1) + iLow(NULL, _Period[iSP_StartTimeFrame + i], j + 1) + iClose(NULL, _Period[iSP_StartTimeFrame + i], j + 1) * 2) / 4;
if(iPrice1 > 0) iSP_Val[i][j] = (iPrice2 - iPrice1) / iPrice1;
else iSP_Val[i][j] = 0;
}
if((i == 0) && (iSP_StartTimeFrame == 0))
{
if (Bid > iOpen(NULL, _Period[0], 0)) iSP_Dir[0] = 1;
else if(Bid < iOpen(NULL, _Period[0], 0)) iSP_Dir[0] = -1;
else
{
if (iSP_Val[i][0] > 0) iSP_Dir[i] = 1;
else if(iSP_Val[i][0] < 0) iSP_Dir[i] = -1;
else
{
iSP_Dir[i] = 0;
break;
}
}
}
else
{
if (iOpen(NULL, _Period[iSP_StartTimeFrame + i], 0) > iClose(NULL, _Period[iSP_StartTimeFrame + i], 1)) iSP_Dir[i] = 1;
else if(iOpen(NULL, _Period[iSP_StartTimeFrame + i], 0) < iClose(NULL, _Period[iSP_StartTimeFrame + i], 1)) iSP_Dir[i] = -1;
else
{
if (iSP_Val[i][0] > 0) iSP_Dir[i] = 1;
else if(iSP_Val[i][0] < 0) iSP_Dir[i] = -1;
else
{
iSP_Dir[i] = 0;
break;
}
}
}
if(iSP_Val[i][iSP_CountBars - 1] * iSP_Dir[i] <= 0)
{
iSP_Dir[i] = 0;
break;
}
for(j = iSP_CountBars - 2; j >= 0; j--)
{
if((iSP_Dir[i] == 1) && (iSP_Val[i][j] <= iSP_Val[i][j + 1]))
{
iSP_Dir[i] = 0;
break;
}
else
if((iSP_Dir[i] == -1) && (iSP_Val[i][j] >= iSP_Val[i][j + 1]))
{
iSP_Dir[i] = 0;
break;
}
}
}
miSpeed = iSP_Dir[0];
for(i = 1; i < iSP_CountTimeFrames; i++)
{
if(iSP_Dir[i] != miSpeed)
{
miSpeed = 0;
break;
}
}
if(miSpeed != 0)
{
iPrice1 = iOpen(NULL, _Period[0], 0);
iPrice2 = Bid;
if((iSP_StartTimeFrame == 0) && (iPrice1 != iPrice2) && (iPrice1 > 0)) miSpeed = (iPrice2 - iPrice1) / iPrice1;
else miSpeed = iSP_Val[0][0];
}
}
if(CountHighLowLimits > 0)
{
int _iHL_CountBars, _iHL_Period;
for(k = 0; k < CountHighLowLimits; k++)
{
iHL_Low[k] = 0;
iHL_High[k] = 0;
switch(k)
{
case 0 : _iHL_Period = iHL_Period1; _iHL_CountBars = iHL_CountBars1; break;
case 1 : _iHL_Period = iHL_Period2; _iHL_CountBars = iHL_CountBars2; break;
default: continue;
}
for(i = 0; i < _iHL_CountBars; i++)
{
_Low = iLow( NULL, _Period[_iHL_Period], i);
_High = iHigh(NULL, _Period[_iHL_Period], i);
if(_Low > 0)
if((iHL_Low[k] == 0) || (_Low < iHL_Low[k])) iHL_Low[k] = _Low;
if(_High > 0)
if((iHL_High[k] == 0) || (_High > iHL_High[k])) iHL_High[k] = _High;
}
}
}
if(UseFlatIndicator == 1)
{
int _CountLow, _CountHigh, _PrevLowHigh;
iFL_IsFlat = false;
iFL_Low = 0;
iFL_High = 0;
iFL_Width = 0;
for(i = 0; i < iFL_CountBars; i++)
{
_Low = iLow( NULL, _Period[iFL_Period], i);
_High = iHigh(NULL, _Period[iFL_Period], i);
if(_Low > 0)
if((iFL_Low == 0) || (_Low < iFL_Low)) iFL_Low = _Low;
if(_High > 0)
if((iFL_High == 0) || (_High > iFL_High)) iFL_High = _High;
}
iFL_Width = iFL_High - iFL_Low;
if((iFL_High > 0) && (iFL_Low > 0) && (iFL_Width >= iFL_MinWidthCanal * _Point) && (iFL_Width <= iFL_MaxWidthCanal * _Point))
{
_CountLow = 0; _CountHigh = 0; _PrevLowHigh = 0;
for(i = 0; i < iFL_CountBars; i++)
{
_Low = iLow( NULL, _Period[iFL_Period], i);
_High = iHigh(NULL, _Period[iFL_Period], i);
if((_Low > 0) && (_Low < (iFL_Low + iFL_Width / 4)) && (_PrevLowHigh >= 0))
{
_PrevLowHigh = -1;
_CountLow = _CountLow + 1;
}
if((_High > 0) && (_High > (iFL_High - iFL_Width / 4)) && (_PrevLowHigh <= 0))
{
_PrevLowHigh = 1;
_CountHigh = _CountHigh + 1;
}
}
if((_CountLow >= iFL_MinExtremumsCount) && (_CountHigh >= iFL_MinExtremumsCount))
{
iFL_IsFlat = true;
}
}
}
if(!glAnalizCurrentOrdersState()) return(0);
if((Counts[_OP_BUY] != 0) && (Counts[_OP_BUYLIMIT] != 0))
{
glDeleteAllDeferOrders(_OP_BUYLIMIT);
}
if((Counts[_OP_SELL] != 0) && (Counts[_OP_SELLLIMIT] != 0))
{
glDeleteAllDeferOrders(_OP_SELLLIMIT);
}
if((Counts[_OP_BUY] != 0) && (Counts[_OP_BUYSTOP] != 0))
{
glDeleteAllDeferOrders(_OP_BUYSTOP, "", MinPrices[_OP_BUY], 0);
}
if((Counts[_OP_SELL] != 0) && (Counts[_OP_SELLSTOP] != 0))
{
glDeleteAllDeferOrders(_OP_SELLSTOP, "", 0, MaxPrices[_OP_SELL]);
}
if((Counts[_OP_BUY] != 0) && (Counts[_OP_SELL] != 0))
{
if(((TakeProfitForLock != 0) && ((TakeProfitForLock != TakeProfitB) || (TakeProfitForLock != TakeProfitS))) ||
((StopLossForLock != 0) && ((StopLossForLock != StopLossB) || (StopLossForLock != StopLossS))))
{
CurrentPrice = (Ask + Bid) / 2;
total = OrdersTotal();
for(i = 0; i < total; i++)
{
if(!OrderSelect(i, SELECT_BY_POS, MODE_TRADES))
{
Print("Ошибка получения текущего ордера OrderSelect(): ", GetLastError());
return(0);
}
_OrderType = OrderType();
_OrderOpenPrice = OrderOpenPrice();
_OrderTakeProfit = OrderTakeProfit();
_OrderStopLoss = OrderStopLoss();
_OrderMagicNumber = OrderMagicNumber();
if(_OrderMagicNumber == MN_Averaging) continue;
if((_OrderType == OP_BUY) && (_OrderOpenPrice == MinPrices[_OP_BUY]))
{
if(_OrderTakeProfit < (_OrderOpenPrice + TakeProfitForLock * _Point))
{
if((MathAbs(Bid - _OrderStopLoss) > MI_MODE_STOPLEVEL * _Point) && (MathAbs(Bid - (_OrderOpenPrice + TakeProfitForLock * _Point)) > MI_MODE_STOPLEVEL * _Point))
if(OrderModify(OrderTicket(), _OrderOpenPrice, _OrderStopLoss, _OrderOpenPrice + TakeProfitForLock * _Point, 0))
{
_OrderTakeProfit = _OrderOpenPrice + TakeProfitForLock * _Point;
}
}
if((StopLossForLock != 0) && (_OrderOpenPrice > MaxPrices[_OP_SELL]) &&
((_OrderOpenPrice - MaxPrices[_OP_SELL]) > 2.2 * StopLossForLock * _Point) &&
(MathAbs(_OrderOpenPrice - CurrentPrice) < MathAbs(MaxPrices[_OP_SELL] - CurrentPrice)) &&
(_OrderStopLoss < (_OrderOpenPrice - StopLossForLock * _Point)) &&
(Bid > (_OrderOpenPrice - StopLossForLock * _Point * 2/3)))
{
if((MathAbs(Bid - (_OrderOpenPrice - StopLossForLock * _Point)) > MI_MODE_STOPLEVEL * _Point) && (MathAbs(Bid - _OrderTakeProfit) > MI_MODE_STOPLEVEL * _Point))
if(OrderModify(OrderTicket(), _OrderOpenPrice, _OrderOpenPrice - StopLossForLock * _Point, _OrderTakeProfit, 0))
{
_OrderStopLoss = _OrderOpenPrice - StopLossForLock * _Point;
}
}
}
else if((_OrderType == OP_SELL) && (_OrderOpenPrice == MaxPrices[_OP_SELL]))
{
if(_OrderTakeProfit > (_OrderOpenPrice - TakeProfitForLock * _Point))
{
if((MathAbs(Ask - _OrderStopLoss) > MI_MODE_STOPLEVEL * _Point) && (MathAbs(Ask - (_OrderOpenPrice - TakeProfitForLock * _Point)) > MI_MODE_STOPLEVEL * _Point))
if(OrderModify(OrderTicket(), _OrderOpenPrice, _OrderStopLoss, _OrderOpenPrice - TakeProfitForLock * _Point, 0))
{
_OrderTakeProfit = _OrderOpenPrice - TakeProfitForLock * _Point;
}
}
if((StopLossForLock != 0) && (_OrderOpenPrice < MinPrices[_OP_BUY]) &&
((MinPrices[_OP_BUY] - _OrderOpenPrice) > 2.2 * StopLossForLock * _Point) &&
(MathAbs(_OrderOpenPrice - CurrentPrice) < MathAbs(MinPrices[_OP_BUY] - CurrentPrice)) &&
(_OrderStopLoss > (_OrderOpenPrice + StopLossForLock * _Point)) &&
(Ask < (_OrderOpenPrice + StopLossForLock * _Point * 2/3)))
{
if((MathAbs(Ask - (_OrderOpenPrice + StopLossForLock * _Point)) > MI_MODE_STOPLEVEL * _Point) && (MathAbs(Ask - _OrderTakeProfit) > MI_MODE_STOPLEVEL * _Point))
if(OrderModify(OrderTicket(), _OrderOpenPrice, _OrderOpenPrice + StopLossForLock * _Point, _OrderTakeProfit, 0))
{
_OrderStopLoss = _OrderOpenPrice + StopLossForLock * _Point;
}
}
}
}
}
}
if((UseSpeedIndicator == 1) && (miSpeed != 0))
{
if((miSpeed > 0) && (Counts[_OP_SELLLIMIT] > 0) && (MinPrices[_OP_SELLLIMIT] < (Bid + 20 * _Point)))
{
glDeleteAllDeferOrders(_OP_SELLLIMIT);
}
if((miSpeed < 0) && (Counts[_OP_BUYLIMIT] > 0) && (MaxPrices[_OP_BUYLIMIT] > (Ask - 20 * _Point)))
{
glDeleteAllDeferOrders(_OP_BUYLIMIT);
}
}
if(CountHighLowLimits > 0)
{
for(k = 0; k < CountHighLowLimits; k++)
{
switch(k)
{
case 0 : _iHL_LimitDistance = iHL_LimitDistance1; break;
case 1 : _iHL_LimitDistance = iHL_LimitDistance2; break;
default: continue;
}
if((Counts[_OP_BUYSTOP] != 0) && (iHL_Low[k] > 0) && (MaxPrices[_OP_BUYSTOP] >= (iHL_Low[k] + _iHL_LimitDistance * _Point)))
{
glDeleteAllDeferOrders(_OP_BUYSTOP, "", iHL_Low[k] + _iHL_LimitDistance * _Point, 0);
}
if((Counts[_OP_SELLSTOP] != 0) && (iHL_High[k] > 0) && (MinPrices[_OP_SELLSTOP] <= (iHL_High[k] - _iHL_LimitDistance * _Point)))
{
glDeleteAllDeferOrders(_OP_SELLSTOP, "", 0, iHL_High[k] - _iHL_LimitDistance * _Point);
}
}
}
total = OrdersTotal();
if(TrailingStop > 0)
{
for(i = 0; i < total; i++)
{
OrderSelect(i, SELECT_BY_POS, MODE_TRADES);
if(OrderSymbol() != Symbol()) continue;
if(OrderType() == OP_BUY)
{
if(Bid > (OrderOpenPrice() + _Point * TrailingStop))
{
if((OrderStopLoss() == 0) || (OrderStopLoss() < (Bid - _Point * (TrailingStop + StepTrailingStop))))
{
OrderModify(OrderTicket(), OrderOpenPrice(), Bid - _Point * TrailingStop, OrderTakeProfit(), 0);
}
}
}
else if(OrderType() == OP_SELL)
{
if(Ask < (OrderOpenPrice() - _Point * TrailingStop))
{
if((OrderStopLoss() == 0) || (OrderStopLoss() > (Ask + _Point * (TrailingStop + StepTrailingStop))))
{
OrderModify(OrderTicket(), OrderOpenPrice(), Ask + _Point * TrailingStop, OrderTakeProfit(), 0);
}
}
}
}
}
if(!glAnalizCurrentOrdersState()) return(0);
if(Risk > 0) Lots = glDoubleRound(AccountFreeMargin() / 1000.0 * Risk, StepLotSize);
else Lots = MinLotSize;
if(Lots < MinLotSize) Lots = MinLotSize;
if(Lots > MaxLotSize) Lots = MaxLotSize;
if(AccountFreeMargin() < (1000 * Lots))
{
if((Counts[_OP_BUY] + Counts[_OP_SELL]) == 0)
{
return(0);
}
}
for(i = 0; i < 2; i++)
{
if(MaxOrdersCount != 0)
if((Counts[_OP_BUY] + Counts[_OP_SELL]) >= MaxOrdersCount) break;
if(i == 0)
{
if(UseBuy == 0) continue;
type = _OP_BUY;
typestr = "BUY";
CurrentPrice = Ask;
}
else
{
if(UseSell == 0) continue;
type = _OP_SELL;
typestr = "SELL";
CurrentPrice = Bid;
}
CurrentFigure = (MathFloor((CurrentPrice / _Point) / 100) * 100) * _Point;
if(OpenRealOrders == 1)
{
MayOpenRealOrder = false;
if((UseFlatIndicator == 1) && iFL_IsFlat)
{
if((type == _OP_BUY) && (CurrentPrice > iFL_Low) && (CurrentPrice <= (iFL_Low + iFL_Width / 4)))
{
if((iOpen( NULL, _Period[0], 0) >= iClose( NULL, _Period[0], 1)) &&
(iClose( NULL, _Period[0], 1) > iClose( NULL, _Period[0], 2)) && (iClose( NULL, _Period[0], 2) > iClose( NULL, _Period[0], 3)))
{
MayOpenRealOrder = true;
_OrderType = OP_BUY;
_OrderOpenPrice = CurrentPrice;
_OrderTakeProfit = _OrderOpenPrice + NormalizeDouble(iFL_Width / 2, Digits);
if(TakeProfitB > 0)
{
if(_OrderTakeProfit > (_OrderOpenPrice + TakeProfitB * _Point)) _OrderTakeProfit = _OrderOpenPrice + TakeProfitB * _Point;
}
if(iFL_StopLoss > 0) _OrderStopLoss = _OrderOpenPrice - iFL_StopLoss * _Point;
else if(StopLossB > 0) _OrderStopLoss = _OrderOpenPrice - StopLossB * _Point;
else _OrderStopLoss = 0;
}
}
if((type == _OP_SELL) && (CurrentPrice < iFL_High) && (CurrentPrice >= (iFL_High - iFL_Width / 4)))
{
if((iOpen( NULL, _Period[0], 0) <= iClose( NULL, _Period[0], 1)) &&
(iClose( NULL, _Period[0], 1) < iClose( NULL, _Period[0], 2)) && (iClose( NULL, _Period[0], 2) < iClose( NULL, _Period[0], 3)))
{
MayOpenRealOrder = true;
_OrderType = OP_SELL;
_OrderOpenPrice = CurrentPrice;
_OrderTakeProfit = _OrderOpenPrice - NormalizeDouble(iFL_Width / 2, Digits);
if(TakeProfitS > 0)
{
if(_OrderTakeProfit < (_OrderOpenPrice - TakeProfitS * _Point)) _OrderTakeProfit = _OrderOpenPrice - TakeProfitS * _Point;
}
if(iFL_StopLoss > 0) _OrderStopLoss = _OrderOpenPrice + iFL_StopLoss * _Point;
else if(StopLossS > 0) _OrderStopLoss = _OrderOpenPrice + StopLossS * _Point;
else _OrderStopLoss = 0;
}
}
if(MayOpenRealOrder) _OrderMagicNumber = MN_Flating;
}
if(!MayOpenRealOrder && (UseSpeedIndicator == 1) && (iSP_UseForOpenRealOrders == 1) && (MathAbs(miSpeed) > iSP_MinValueForOpenRealOrders))
{
if((type == _OP_BUY) && (miSpeed > 0))
{
MayOpenRealOrder = true;
_OrderType = OP_BUY;
_OrderOpenPrice = CurrentPrice;
if(iSP_UseMinTakeProfit == 1) _OrderTakeProfit = _OrderOpenPrice + MarketInfo(Symbol(), MODE_STOPLEVEL) * _Point;
else _OrderTakeProfit = _OrderOpenPrice + TakeProfitB * _Point;
if(iSP_StopLoss > 0) _OrderStopLoss = _OrderOpenPrice - iSP_StopLoss * _Point;
else if(StopLossB > 0) _OrderStopLoss = _OrderOpenPrice - StopLossB * _Point;
else _OrderStopLoss = 0;
}
if((type == _OP_SELL) && (miSpeed < 0))
{
MayOpenRealOrder = true;
_OrderType = OP_SELL;
_OrderOpenPrice = CurrentPrice;
if(iSP_UseMinTakeProfit == 1) _OrderTakeProfit = _OrderOpenPrice - MarketInfo(Symbol(), MODE_STOPLEVEL) * _Point;
else _OrderTakeProfit = _OrderOpenPrice - TakeProfitS * _Point;
if(iSP_StopLoss > 0) _OrderStopLoss = _OrderOpenPrice + iSP_StopLoss * _Point;
else if(StopLossS > 0) _OrderStopLoss = _OrderOpenPrice + StopLossS * _Point;
else _OrderStopLoss = 0;
}
if(MayOpenRealOrder) _OrderMagicNumber = MN_Speed;
}
if(MayOpenRealOrder)
{
if(!glCheckOrderBeforeAdding(_OrderOpenPrice, type, _OrderType, CurrentPrice)) MayOpenRealOrder = false;
}
if(MayOpenRealOrder)
{
if(!glCheckDistanceFromOneWayReal(_OrderOpenPrice, type, typestr, NearestRealPrice)) MayOpenRealOrder = false;
}
if(MayOpenRealOrder)
{
if(!glCheckHighLowLimit(_OrderOpenPrice, type, typestr)) MayOpenRealOrder = false;
}
if(MayOpenRealOrder)
{
if(!glCheckOpenOrdersBeforeAdding(_OrderOpenPrice, _OrderType, CurrentPrice)) MayOpenRealOrder = false;
}
if(MayOpenRealOrder)
{
_Volume = Lots;
if(_OrderMagicNumber == MN_Flating)
{
if((iFL_LotSizeMultiply > 0) && (iFL_LotSizeMultiply != 1))
{
_Volume = glDoubleRound(Lots * iFL_LotSizeMultiply, StepLotSize);
if(_Volume > MaxLotSize) _Volume = MaxLotSize;
}
}
ticket = OrderSend(Symbol(), _OrderType, _Volume, _OrderOpenPrice, 0, _OrderStopLoss, _OrderTakeProfit, "greezly", _OrderMagicNumber, 0, Green);
if(ticket > 0)
{
if(OrderSelect(ticket, SELECT_BY_TICKET, MODE_TRADES))
{
if(!glAnalizCurrentOrdersState()) return(0);
continue;
}
}
else Print("Ошибка открытия ", typestr, " ордера (Lots = ", Lots, "): ", GetLastError());
}
}
for(j = 0; j < 2; j++)
{
_OrderMagicNumber = MN_Usual;
if(j == 0)
{
if(type == _OP_BUY)
{
if(BuyStopLevel < 0) continue;
_OrderType = OP_BUYSTOP;
typedefer = _OP_BUYSTOP;
typestr = "BUY STOP";
if(CurrentPrice < (CurrentFigure + BuyStopLevel * _Point))
_OrderOpenPrice = CurrentFigure + BuyStopLevel * _Point;
else
_OrderOpenPrice = CurrentFigure + (100 + BuyStopLevel) * _Point;
}
else
{
if(SellStopLevel < 0) continue;
_OrderType = OP_SELLSTOP;
typedefer = _OP_SELLSTOP;
typestr = "SELL STOP";
if(CurrentPrice < (CurrentFigure + SellStopLevel * _Point))
_OrderOpenPrice = CurrentFigure - (100 - SellStopLevel) * _Point;
else
_OrderOpenPrice = CurrentFigure + SellStopLevel * _Point;
}
}
else
{
if(type == _OP_BUY)
{
if(BuyLimitLevel < 0) continue;
_OrderType = OP_BUYLIMIT;
typedefer = _OP_BUYLIMIT;
typestr = "BUY LIMIT";
if(CurrentPrice < (CurrentFigure + BuyLimitLevel * _Point))
_OrderOpenPrice = CurrentFigure - (100 - BuyLimitLevel) * _Point;
else
_OrderOpenPrice = CurrentFigure + BuyLimitLevel * _Point;
}
else
{
if(SellLimitLevel < 0) continue;
_OrderType = OP_SELLLIMIT;
typedefer = _OP_SELLLIMIT;
typestr = "SELL LIMIT";
if(CurrentPrice < (CurrentFigure + SellLimitLevel * _Point))
_OrderOpenPrice = CurrentFigure + SellLimitLevel * _Point;
else
_OrderOpenPrice = CurrentFigure + (100 + SellLimitLevel) * _Point;
}
}
if(type == _OP_BUY)
{
_OrderTakeProfit = _OrderOpenPrice + TakeProfitB * _Point;
if(StopLossB > 0) _OrderStopLoss = _OrderOpenPrice - StopLossB * _Point;
else _OrderStopLoss = 0;
}
else
{
_OrderTakeProfit = _OrderOpenPrice - TakeProfitS * _Point;
if(StopLossS > 0) _OrderStopLoss = _OrderOpenPrice + StopLossS * _Point;
else _OrderStopLoss = 0;
}
MayOpenDeferOrder = true;
if(MayOpenDeferOrder)
{
if(!glCheckOrderBeforeAdding(_OrderOpenPrice, type, _OrderType, CurrentPrice)) MayOpenDeferOrder = false;
}
if(MayOpenDeferOrder)
{
if(MinDistanceDeferFromPrice != 0)
if(MathAbs(_OrderOpenPrice - CurrentPrice) < (MinDistanceDeferFromPrice * _Point)) MayOpenDeferOrder = false;
if(MaxDistanceDeferFromPrice != 0)
if(MathAbs(_OrderOpenPrice - CurrentPrice) > (MaxDistanceDeferFromPrice * _Point)) MayOpenDeferOrder = false;
}
if(MayOpenDeferOrder)
{
if((Counts[type] > 0) && (j == 1)) MayOpenDeferOrder = false;
}
if(MayOpenDeferOrder)
{
if(Counts[typedefer] > 0)
{
if((typedefer == _OP_BUYSTOP) || (typedefer == _OP_SELLLIMIT)) NearestDeferPrice = MinPrices[typedefer];
else NearestDeferPrice = MaxPrices[typedefer];
NeedDistance = MinDistanceBetweenDefer * _Point;
if((typedefer == _OP_BUYSTOP) || (typedefer == _OP_SELLLIMIT))
{
if(_OrderOpenPrice > NearestDeferPrice - NeedDistance) MayOpenDeferOrder = false;
}
else
{
if(_OrderOpenPrice < NearestDeferPrice + NeedDistance) MayOpenDeferOrder = false;
}
}
}
if(MayOpenDeferOrder && (Counts[type] > 0))
{
if(glCheckDistanceFromOneWayReal(_OrderOpenPrice, type, typestr, NearestRealPrice))
{
if(((type == _OP_BUY) && (UseAveragingTakeProfitB == 1)) ||
((type == _OP_SELL) && (UseAveragingTakeProfitS == 1)))
{
_OrderTakeProfit = (_OrderOpenPrice + NearestRealPrice) / 2;
_OrderMagicNumber = MN_Averaging;
}
}
else MayOpenDeferOrder = false;
}
if(MayOpenDeferOrder && (UseSpeedIndicator == 1))
{
if(j == 1)
{
if((type == _OP_BUY) && (miSpeed < 0))
{
MayOpenDeferOrder = false;
}
if((type == _OP_SELL) && (miSpeed > 0))
{
MayOpenDeferOrder = false;
}
}
}
if(MayOpenDeferOrder && (CountHighLowLimits > 0))
{
if(!glCheckHighLowLimit(_OrderOpenPrice, type, typestr)) MayOpenDeferOrder = false;
}
if(MayOpenDeferOrder)
{
if(!glCheckOpenOrdersBeforeAdding(_OrderOpenPrice, _OrderType, CurrentPrice)) MayOpenDeferOrder = false;
}
if(MayOpenDeferOrder)
{
_Volume = Lots;
ticket = OrderSend(Symbol(), _OrderType, _Volume, _OrderOpenPrice, 0, _OrderStopLoss, _OrderTakeProfit, "greezly", _OrderMagicNumber, 0, Green);
if(ticket > 0)
{
if(OrderSelect(ticket, SELECT_BY_TICKET, MODE_TRADES))
{
if(!glAnalizCurrentOrdersState()) return(0);
}
}
else Print("Ошибка открытия ", typestr, " ордера (Lots = ", Lots, "): ", GetLastError());
}
}
}
return(0);
}
bool glCheckOrderBeforeAdding(double _OrderOpenPrice, int type, int _OrderType, double CurrentPrice)
{
double _SellDenyLevel;
_SellDenyLevel = SellDenyLevel;
if(type == _OP_BUY)
{
if(UseBuy == 0) return(false);
if((_OrderType == OP_BUY) && (OpenRealOrders == 0)) return(false);
if((BuyDenyLevel > 0) && (_OrderOpenPrice >= BuyDenyLevel)) return(false);
}
if(type == _OP_SELL)
{
if(UseSell == 0) return(false);
if((_OrderType == OP_SELL) && (OpenRealOrders == 0)) return(false);
if((_SellDenyLevel > 0) && (_OrderOpenPrice <= _SellDenyLevel)) return(false);
}
return(true);
}
bool glCheckOpenOrdersBeforeAdding(double _OrderOpenPrice, int _OrderType, double CurrentPrice)
{
int i, j, k, total;
if((_OrderType == OP_BUY) || (_OrderType == OP_BUYLIMIT))
{
if(!glDeleteAllDeferOrders(OP_BUYLIMIT)) return(false);
}
if((_OrderType == OP_SELL) || (_OrderType == OP_SELLLIMIT))
{
if(!glDeleteAllDeferOrders(OP_SELLLIMIT)) return(false);