-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAF-Global-Expert-Full.mq4
2131 lines (2086 loc) · 173 KB
/
AF-Global-Expert-Full.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
//+------------------------------------------------------------------+
//| AF-Global Expert (Name).mq4 |
//| Copyright 2018, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2013-2018, AFSID-Group.Cv"
#property link "https://afs-id.com"
#property version "18.0"
#property description "======COMBINED AF-Scalper.Ltd, AF-FiboScalper And AF-TrendKiller====="
#property description "=Expert Type Scalping Day="
#property description "=Minimum Deposit 1000$/2 Pair= EURUSD GBPUSD"
#property description "=Recommended Pair EURUSD,EURJPY,USDJPY,GBPUSD,GBPJPY="
#property description "=TF H1="
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
extern string LicenceTO = " Juan Guillermo Lara ";
extern string ATURANWAJIB = "GLOBAL-SETTINGS";
extern string OnlineIndicatorAddress ="103.233.102.2"; //Online Indicator.
extern string IndicatorServer = "https://afs-id.com"; //Connecting to server
extern bool UseOnlineIndicator = True;
extern double Lots = 0.01;
extern double LotExponent = 1.44;
extern int lotdecimal = 2;
extern double PipStep = 180.0;
extern double MaxLots = 99.0;
extern bool MM = FALSE;
extern double TakeProfit = 50.0;
extern bool UseEquityStop = FALSE;
extern double TotalEquityRisk = 20.0;
extern bool UseTrailingStop = FALSE;
extern double TrailStart = 13.0;
extern double TrailStop = 3.0;
extern double slip = 5.0;
extern string ATURANFIBO = "SETTINGS For AF-FiboScalper";
extern int MaxTrades_Hilo = 20;
bool gi_184 = FALSE;
double gd_188 = 48.0;
double g_pips_196 = 40.0;
double g_slippage_204;
extern int MagicNumber_Hilo = 10278;
double g_price_216;
double gd_224;
double gd_unused_232;
double gd_unused_240;
double gd_248;
double gd_256;
double g_price_264;
double g_bid_272;
double g_ask_280;
double gd_288;
double gd_296;
double gd_304;
bool gi_312;
string gs_316 = "GTA";
int gi_324 = 0;
int gi_328;
int gi_332 = 0;
double gd_336;
int g_pos_344 = 0;
int gi_348;
double gd_352 = 0.0;
bool gi_360 = FALSE;
bool gi_364 = FALSE;
bool gi_368 = FALSE;
int gi_372;
bool gi_376 = FALSE;
double gd_380;
double gd_388;
extern string ATURANAFSCALPER = "SETTINGS For AF-Scalper";
extern int MaxTrades_15 = 20;
int g_timeframe_408 = PERIOD_H1;
double g_pips_412 = 40.0;
bool gi_420 = FALSE;
double gd_424 = 48.0;
double g_slippage_432;
extern int g_magic_176_15 = 22324;
double g_price_444;
double gd_452;
double gd_unused_460;
double gd_unused_468;
double g_price_476;
double g_bid_484;
double g_ask_492;
double gd_500;
double gd_508;
double gd_516;
bool gi_524;
string gs_528 = "GTA";
int gi_536 = 0;
int gi_540;
int gi_544 = 0;
double gd_548;
int g_pos_556 = 0;
int gi_560;
double gd_564 = 0.0;
bool gi_572 = FALSE;
bool gi_576 = FALSE;
bool gi_580 = FALSE;
int gi_584;
bool gi_588 = FALSE;
double gd_592;
double gd_600;
int g_datetime_608 = 1;
extern string ATURANTRENDKILLER = "SETTINGS For AF-TrendKiller";
extern int MaxTrades_16 = 20;
int g_timeframe_624 = PERIOD_M1;
double g_pips_628 = 40.0;
bool gi_636 = FALSE;
double gd_640 = 48.0;
double g_slippage_648;
extern int g_magic_176_16 = 23794;
extern bool UseNewsFilter = FALSE;
double g_price_660;
double gd_668;
double gd_unused_676;
double gd_unused_684;
double g_price_692;
double g_bid_700;
double g_ask_708;
double gd_716;
double gd_724;
double gd_732;
bool gi_740;
string gs_744 = "GTA";
int gi_752 = 0;
int gi_756;
int gi_760 = 0;
double gd_764;
int g_pos_772 = 0;
int gi_776;
double gd_780 = 0.0;
bool gi_788 = FALSE;
bool gi_792 = FALSE;
bool gi_796 = FALSE;
int gi_800;
bool gi_804 = FALSE;
bool cg =FALSE;
double gd_808;
double gd_816;
int g_datetime_824 = 1;
int g_timeframe_828 = PERIOD_M1;
int g_timeframe_832 = PERIOD_M5;
int g_timeframe_836 = PERIOD_M15;
int g_timeframe_840 = PERIOD_M30;
int g_timeframe_844 = PERIOD_H1;
int g_timeframe_848 = PERIOD_H4;
int g_timeframe_852 = PERIOD_D1;
bool g_corner_856 = TRUE;
int gi_860 = 0;
int gi_864 = 10;
int g_window_868 = 0;
bool gi_872 = TRUE;
bool gi_unused_876 = TRUE;
bool gi_880 = FALSE;
int g_color_884 = Gray;
int g_color_888 = Gray;
int g_color_892 = Gray;
int g_color_896 = DarkOrange;
int gi_unused_900 = 36095;
int g_color_904 = Lime;
int g_color_908 = OrangeRed;
int gi_912 = 65280;
int gi_916 = 17919;
int g_color_920 = Lime;
int g_color_924 = Red;
int g_color_928 = Orange;
int g_period_932 = 8;
int g_period_936 = 17;
int g_period_940 = 9;
int g_applied_price_944 = PRICE_CLOSE;
int g_color_948 = Lime;
int g_color_952 = Tomato;
int g_color_956 = Green;
int g_color_960 = Red;
string gs_unused_964 = "<<<< STR Indicator Settings >>>>>>>>>>>>>";
string gs_unused_972 = "<<<< RSI Settings >>>>>>>>>>>>>";
int g_period_980 = 9;
int g_applied_price_984 = PRICE_CLOSE;
string gs_unused_988 = "<<<< CCI Settings >>>>>>>>>>>>>>";
int g_period_996 = 13;
int g_applied_price_1000 = PRICE_CLOSE;
string gs_unused_1004 = "<<<< STOCH Settings >>>>>>>>>>>";
int g_period_1012 = 5;
int g_period_1016 = 3;
int g_slowing_1020 = 3;
int g_ma_method_1024 = MODE_EMA;
string gs_unused_1028 = "<<<< STR Colors >>>>>>>>>>>>>>>>";
int g_color_1036 = Lime;
int g_color_1040 = Red;
int g_color_1044 = Orange;
string gs_unused_1048 = "<<<< MA Settings >>>>>>>>>>>>>>";
int g_period_1056 = 5;
int g_period_1060 = 9;
int g_ma_method_1064 = MODE_EMA;
int g_applied_price_1068 = PRICE_CLOSE;
string gs_unused_1072 = "<<<< MA Colors >>>>>>>>>>>>>>";
int g_color_1080 = Lime;
int g_color_1084 = Red;
string gs_dummy_1088;
string g_text_1096;
string g_text_1104;
string g_dbl2str_1112 = "";
string g_dbl2str_1120 = "";
int g_color_1128 = ForestGreen;
int init() {
gd_304 = MarketInfo(Symbol(), MODE_SPREAD) * Point;
gd_516 = MarketInfo(Symbol(), MODE_SPREAD) * Point;
gd_732 = MarketInfo(Symbol(), MODE_SPREAD) * Point;
ObjectCreate("Lable1", OBJ_LABEL, 0, 0, 1.0);
ObjectSet("Lable1", OBJPROP_CORNER, 2);
ObjectSet("Lable1", OBJPROP_XDISTANCE, 23);
ObjectSet("Lable1", OBJPROP_YDISTANCE, 21);
g_text_1104 = "AFSID GROUP";
ObjectSetText("Lable1", g_text_1104, 12, "Times New Roman", Aqua);
ObjectCreate("Lable", OBJ_LABEL, 0, 0, 1.0);
ObjectSet("Lable", OBJPROP_CORNER, 2);
ObjectSet("Lable", OBJPROP_XDISTANCE, 3);
ObjectSet("Lable", OBJPROP_YDISTANCE, 1);
g_text_1096 = " https://afs-id.com";
ObjectSetText("Lable", g_text_1096, 11, "Times New Roman", DeepSkyBlue);
return (0);
}
int deinit() {
ObjectDelete("cja");
ObjectDelete("Signalprice");
ObjectDelete("SIG_BARS_TF1");
ObjectDelete("SIG_BARS_TF2");
ObjectDelete("SIG_BARS_TF3");
ObjectDelete("SIG_BARS_TF4");
ObjectDelete("SIG_BARS_TF5");
ObjectDelete("SIG_BARS_TF6");
ObjectDelete("SIG_BARS_TF7");
ObjectDelete("SSignalMACD_TEXT");
ObjectDelete("SSignalMACDM1");
ObjectDelete("SSignalMACDM5");
ObjectDelete("SSignalMACDM15");
ObjectDelete("SSignalMACDM30");
ObjectDelete("SSignalMACDH1");
ObjectDelete("SSignalMACDH4");
ObjectDelete("SSignalMACDD1");
ObjectDelete("SSignalSTR_TEXT");
ObjectDelete("SignalSTRM1");
ObjectDelete("SignalSTRM5");
ObjectDelete("SignalSTRM15");
ObjectDelete("SignalSTRM30");
ObjectDelete("SignalSTRH1");
ObjectDelete("SignalSTRH4");
ObjectDelete("SignalSTRD1");
ObjectDelete("SignalEMA_TEXT");
ObjectDelete("SignalEMAM1");
ObjectDelete("SignalEMAM5");
ObjectDelete("SignalEMAM15");
ObjectDelete("SignalEMAM30");
ObjectDelete("SignalEMAH1");
ObjectDelete("SignalEMAH4");
ObjectDelete("SignalEMAD1");
ObjectDelete("SIG_DETAIL_1");
ObjectDelete("SIG_DETAIL_2");
ObjectDelete("SIG_DETAIL_3");
ObjectDelete("SIG_DETAIL_4");
ObjectDelete("SIG_DETAIL_5");
ObjectDelete("SIG_DETAIL_6");
ObjectDelete("SIG_DETAIL_7");
ObjectDelete("SIG_DETAIL_8");
ObjectDelete("Lable");
ObjectDelete("Lable1");
ObjectDelete("Lable2");
ObjectDelete("Lable3");
Comment("https://afs-id.com");
return (0);
}
//=============================================================================================================
int start()
{
//string batas=""; //Year, Month, Date, Expiration
//int tt=StrToTime(batas);
//if(TimeCurrent()>tt)
{
// Alert(" Licence Ended Please Visit https://afs-id.com/ ");
//return(0);
}
//=============================================================================================================
int li_0;
int li_4;
int li_8;
int li_12;
int li_16;
int li_20;
int li_24;
color color_28;
color color_32;
color color_36;
color color_40;
color color_44;
color color_48;
color color_52;
string ls_unused_56;
color color_64;
color color_68;
color color_72;
color color_76;
color color_80;
color color_84;
color color_88;
color color_92;
string ls_unused_96;
color color_104;
int li_unused_108;
double ihigh_112;
double ilow_120;
double iclose_128;
double iclose_136;
double ld_144;
double ld_152;
double ld_160;
int li_168;
int count_172;
double ld_176;
double ld_184;
int li_192;
int count_196;
int ind_counted_200 = IndicatorCounted();
if (Lots > MaxLots) Lots = MaxLots;
Comment("AFSID GROUP"
+ "\n"
+ "https://afs-id.com"
+ "\n"
+ "___________________________________________________"
+ "\n"
+ "Broker :" + AccountCompany()
+ "\n"
+ "Brokers Time :" + TimeToStr(TimeCurrent(), TIME_DATE|TIME_SECONDS)
+ "\n"
+ "___________________________________________________"
+ "\n"
+ "Name :" + AccountName()
+ "\n"
+ "Account Number :" + AccountNumber()
+ "\n"
+ "Account Currency :" + AccountCurrency()
+ "\n"
+ "____________________________________________________"
+ "\n"
+ "Open Orders FiboScalper :" + CountTrades_Hilo()
+ "\n"
+ "Open Orders AF-Scalper :" + CountTrades_15()
+ "\n"
+ "Open Orders AF-TrendKiller :" + CountTrades_16()
+ "\n"
+ "ALL ORDERS :" + OrdersTotal()
+ "\n"
+ "_____________________________________________________"
+ "\n"
+ "Account BALANCE :" + DoubleToStr(AccountBalance(), 2)
+ "\n"
+ "Account EQUITY :" + DoubleToStr(AccountEquity(), 2)
+ "\n"
+ "AFSID GROUP");
gd_248 = NormalizeDouble(AccountBalance(), 2);
gd_256 = NormalizeDouble(AccountEquity(), 2);
if (gd_256 >= 5.0 * (gd_248 / 6.0)) g_color_1128 = DodgerBlue;
if (gd_256 >= 4.0 * (gd_248 / 6.0) && gd_256 < 5.0 * (gd_248 / 6.0)) g_color_1128 = DeepSkyBlue;
if (gd_256 >= 3.0 * (gd_248 / 6.0) && gd_256 < 4.0 * (gd_248 / 6.0)) g_color_1128 = Gold;
if (gd_256 >= 2.0 * (gd_248 / 6.0) && gd_256 < 3.0 * (gd_248 / 6.0)) g_color_1128 = OrangeRed;
if (gd_256 >= gd_248 / 6.0 && gd_256 < 2.0 * (gd_248 / 6.0)) g_color_1128 = Crimson;
if (gd_256 < gd_248 / 5.0) g_color_1128 = Red;
ObjectDelete("Lable2");
ObjectCreate("Lable2", OBJ_LABEL, 0, 0, 1.0);
ObjectSet("Lable2", OBJPROP_CORNER, 3);
ObjectSet("Lable2", OBJPROP_XDISTANCE, 153);
ObjectSet("Lable2", OBJPROP_YDISTANCE, 31);
g_dbl2str_1112 = DoubleToStr(AccountBalance(), 2);
ObjectSetText("Lable2", "Account BALANCE: " + g_dbl2str_1112 + "", 10, "Times New Roman", DodgerBlue);
ObjectDelete("Lable3");
ObjectCreate("Lable3", OBJ_LABEL, 0, 0, 1.0);
ObjectSet("Lable3", OBJPROP_CORNER, 3);
ObjectSet("Lable3", OBJPROP_XDISTANCE, 153);
ObjectSet("Lable3", OBJPROP_YDISTANCE, 11);
g_dbl2str_1120 = DoubleToStr(AccountEquity(), 2);
ObjectSetText("Lable3", "Account EQUITY: " + g_dbl2str_1120 + "", 10, "Times New Roman", g_color_1128);
int ind_counted_204 = IndicatorCounted();
string text_208 = "";
string text_216 = "";
string text_224 = "";
string text_232 = "";
string text_240 = "";
string text_248 = "";
string text_256 = "";
if (g_timeframe_828 == PERIOD_M1) text_208 = "M1";
if (g_timeframe_828 == PERIOD_M5) text_208 = "M5";
if (g_timeframe_828 == PERIOD_M15) text_208 = "M15";
if (g_timeframe_828 == PERIOD_M30) text_208 = "M30";
if (g_timeframe_828 == PERIOD_H1) text_208 = "H1";
if (g_timeframe_828 == PERIOD_H4) text_208 = "H4";
if (g_timeframe_828 == PERIOD_D1) text_208 = "D1";
if (g_timeframe_828 == PERIOD_W1) text_208 = "W1";
if (g_timeframe_828 == PERIOD_MN1) text_208 = "MN";
if (g_timeframe_832 == PERIOD_M1) text_216 = "M1";
if (g_timeframe_832 == PERIOD_M5) text_216 = "M5";
if (g_timeframe_832 == PERIOD_M15) text_216 = "M15";
if (g_timeframe_832 == PERIOD_M30) text_216 = "M30";
if (g_timeframe_832 == PERIOD_H1) text_216 = "H1";
if (g_timeframe_832 == PERIOD_H4) text_216 = "H4";
if (g_timeframe_832 == PERIOD_D1) text_216 = "D1";
if (g_timeframe_832 == PERIOD_W1) text_216 = "W1";
if (g_timeframe_832 == PERIOD_MN1) text_216 = "MN";
if (g_timeframe_836 == PERIOD_M1) text_224 = "M1";
if (g_timeframe_836 == PERIOD_M5) text_224 = "M5";
if (g_timeframe_836 == PERIOD_M15) text_224 = "M15";
if (g_timeframe_836 == PERIOD_M30) text_224 = "M30";
if (g_timeframe_836 == PERIOD_H1) text_224 = "H1";
if (g_timeframe_836 == PERIOD_H4) text_224 = "H4";
if (g_timeframe_836 == PERIOD_D1) text_224 = "D1";
if (g_timeframe_836 == PERIOD_W1) text_224 = "W1";
if (g_timeframe_836 == PERIOD_MN1) text_224 = "MN";
if (g_timeframe_840 == PERIOD_M1) text_232 = "M1";
if (g_timeframe_840 == PERIOD_M5) text_232 = "M5";
if (g_timeframe_840 == PERIOD_M15) text_232 = "M15";
if (g_timeframe_840 == PERIOD_M30) text_232 = "M30";
if (g_timeframe_840 == PERIOD_H1) text_232 = "H1";
if (g_timeframe_840 == PERIOD_H4) text_232 = "H4";
if (g_timeframe_840 == PERIOD_D1) text_232 = "D1";
if (g_timeframe_840 == PERIOD_W1) text_232 = "W1";
if (g_timeframe_840 == PERIOD_MN1) text_232 = "MN";
if (g_timeframe_844 == PERIOD_M1) text_240 = "M1";
if (g_timeframe_844 == PERIOD_M5) text_240 = "M5";
if (g_timeframe_844 == PERIOD_M15) text_240 = "M15";
if (g_timeframe_844 == PERIOD_M30) text_240 = "M30";
if (g_timeframe_844 == PERIOD_H1) text_240 = "H1";
if (g_timeframe_844 == PERIOD_H4) text_240 = "H4";
if (g_timeframe_844 == PERIOD_D1) text_240 = "D1";
if (g_timeframe_844 == PERIOD_W1) text_240 = "W1";
if (g_timeframe_844 == PERIOD_MN1) text_240 = "MN";
if (g_timeframe_848 == PERIOD_M1) text_248 = "M1";
if (g_timeframe_848 == PERIOD_M5) text_248 = "M5";
if (g_timeframe_848 == PERIOD_M15) text_248 = "M15";
if (g_timeframe_848 == PERIOD_M30) text_248 = "M30";
if (g_timeframe_848 == PERIOD_H1) text_248 = "H1";
if (g_timeframe_848 == PERIOD_H4) text_248 = "H4";
if (g_timeframe_848 == PERIOD_D1) text_248 = "D1";
if (g_timeframe_848 == PERIOD_W1) text_248 = "W1";
if (g_timeframe_848 == PERIOD_MN1) text_248 = "MN";
if (g_timeframe_852 == PERIOD_M1) text_256 = "M1";
if (g_timeframe_852 == PERIOD_M5) text_256 = "M5";
if (g_timeframe_852 == PERIOD_M15) text_256 = "M15";
if (g_timeframe_852 == PERIOD_M30) text_256 = "M30";
if (g_timeframe_852 == PERIOD_H1) text_256 = "H1";
if (g_timeframe_852 == PERIOD_H4) text_256 = "H4";
if (g_timeframe_852 == PERIOD_D1) text_256 = "D1";
if (g_timeframe_852 == PERIOD_W1) text_256 = "W1";
if (g_timeframe_852 == PERIOD_MN1) text_256 = "MN";
if (g_timeframe_828 == PERIOD_M15) li_0 = -2;
if (g_timeframe_828 == PERIOD_M30) li_0 = -2;
if (g_timeframe_832 == PERIOD_M15) li_4 = -2;
if (g_timeframe_832 == PERIOD_M30) li_4 = -2;
if (g_timeframe_836 == PERIOD_M15) li_8 = -2;
if (g_timeframe_836 == PERIOD_M30) li_8 = -2;
if (g_timeframe_840 == PERIOD_M15) li_12 = -2;
if (g_timeframe_840 == PERIOD_M30) li_12 = -2;
if (g_timeframe_844 == PERIOD_M15) li_16 = -2;
if (g_timeframe_844 == PERIOD_M30) li_16 = -2;
if (g_timeframe_848 == PERIOD_M15) li_20 = -2;
if (g_timeframe_848 == PERIOD_M30) li_20 = -2;
if (g_timeframe_852 == PERIOD_M15) li_24 = -2;
if (g_timeframe_848 == PERIOD_M30) li_24 = -2;
if (gi_860 < 0) return (0);
ObjectDelete("SIG_BARS_TF1");
ObjectCreate("SIG_BARS_TF1", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SIG_BARS_TF1", text_208, 7, "Arial Bold", g_color_884);
ObjectSet("SIG_BARS_TF1", OBJPROP_CORNER, g_corner_856);
ObjectSet("SIG_BARS_TF1", OBJPROP_XDISTANCE, gi_864 + 134 + li_0);
ObjectSet("SIG_BARS_TF1", OBJPROP_YDISTANCE, gi_860 + 25);
ObjectDelete("SIG_BARS_TF2");
ObjectCreate("SIG_BARS_TF2", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SIG_BARS_TF2", text_216, 7, "Arial Bold", g_color_884);
ObjectSet("SIG_BARS_TF2", OBJPROP_CORNER, g_corner_856);
ObjectSet("SIG_BARS_TF2", OBJPROP_XDISTANCE, gi_864 + 114 + li_4);
ObjectSet("SIG_BARS_TF2", OBJPROP_YDISTANCE, gi_860 + 25);
ObjectDelete("SIG_BARS_TF3");
ObjectCreate("SIG_BARS_TF3", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SIG_BARS_TF3", text_224, 7, "Arial Bold", g_color_884);
ObjectSet("SIG_BARS_TF3", OBJPROP_CORNER, g_corner_856);
ObjectSet("SIG_BARS_TF3", OBJPROP_XDISTANCE, gi_864 + 94 + li_8);
ObjectSet("SIG_BARS_TF3", OBJPROP_YDISTANCE, gi_860 + 25);
ObjectDelete("SIG_BARS_TF4");
ObjectCreate("SIG_BARS_TF4", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SIG_BARS_TF4", text_232, 7, "Arial Bold", g_color_884);
ObjectSet("SIG_BARS_TF4", OBJPROP_CORNER, g_corner_856);
ObjectSet("SIG_BARS_TF4", OBJPROP_XDISTANCE, gi_864 + 74 + li_12);
ObjectSet("SIG_BARS_TF4", OBJPROP_YDISTANCE, gi_860 + 25);
ObjectDelete("SIG_BARS_TF5");
ObjectCreate("SIG_BARS_TF5", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SIG_BARS_TF5", text_240, 7, "Arial Bold", g_color_884);
ObjectSet("SIG_BARS_TF5", OBJPROP_CORNER, g_corner_856);
ObjectSet("SIG_BARS_TF5", OBJPROP_XDISTANCE, gi_864 + 54 + li_16);
ObjectSet("SIG_BARS_TF5", OBJPROP_YDISTANCE, gi_860 + 25);
ObjectDelete("SIG_BARS_TF6");
ObjectCreate("SIG_BARS_TF6", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SIG_BARS_TF6", text_248, 7, "Arial Bold", g_color_884);
ObjectSet("SIG_BARS_TF6", OBJPROP_CORNER, g_corner_856);
ObjectSet("SIG_BARS_TF6", OBJPROP_XDISTANCE, gi_864 + 34 + li_20);
ObjectSet("SIG_BARS_TF6", OBJPROP_YDISTANCE, gi_860 + 25);
ObjectDelete("SIG_BARS_TF7");
ObjectCreate("SIG_BARS_TF7", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SIG_BARS_TF7", text_256, 7, "Arial Bold", g_color_884);
ObjectSet("SIG_BARS_TF7", OBJPROP_CORNER, g_corner_856);
ObjectSet("SIG_BARS_TF7", OBJPROP_XDISTANCE, gi_864 + 14 + li_24);
ObjectSet("SIG_BARS_TF7", OBJPROP_YDISTANCE, gi_860 + 25);
string text_264 = "";
string text_272 = "";
string text_280 = "";
string text_288 = "";
string text_296 = "";
string text_304 = "";
string text_312 = "";
string ls_unused_320 = "";
string ls_unused_328 = "";
double imacd_336 = iMACD(NULL, g_timeframe_828, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_MAIN, 0);
double imacd_344 = iMACD(NULL, g_timeframe_828, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_SIGNAL, 0);
double imacd_352 = iMACD(NULL, g_timeframe_832, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_MAIN, 0);
double imacd_360 = iMACD(NULL, g_timeframe_832, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_SIGNAL, 0);
double imacd_368 = iMACD(NULL, g_timeframe_836, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_MAIN, 0);
double imacd_376 = iMACD(NULL, g_timeframe_836, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_SIGNAL, 0);
double imacd_384 = iMACD(NULL, g_timeframe_840, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_MAIN, 0);
double imacd_392 = iMACD(NULL, g_timeframe_840, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_SIGNAL, 0);
double imacd_400 = iMACD(NULL, g_timeframe_844, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_MAIN, 0);
double imacd_408 = iMACD(NULL, g_timeframe_844, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_SIGNAL, 0);
double imacd_416 = iMACD(NULL, g_timeframe_848, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_MAIN, 0);
double imacd_424 = iMACD(NULL, g_timeframe_848, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_SIGNAL, 0);
double imacd_432 = iMACD(NULL, g_timeframe_852, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_MAIN, 0);
double imacd_440 = iMACD(NULL, g_timeframe_852, g_period_932, g_period_936, g_period_940, g_applied_price_944, MODE_SIGNAL, 0);
if (imacd_336 > imacd_344) {
text_288 = "-";
color_40 = g_color_956;
}
if (imacd_336 <= imacd_344) {
text_288 = "-";
color_40 = g_color_952;
}
if (imacd_336 > imacd_344 && imacd_336 > 0.0) {
text_288 = "-";
color_40 = g_color_948;
}
if (imacd_336 <= imacd_344 && imacd_336 < 0.0) {
text_288 = "-";
color_40 = g_color_960;
}
if (imacd_352 > imacd_360) {
text_296 = "-";
color_44 = g_color_956;
}
if (imacd_352 <= imacd_360) {
text_296 = "-";
color_44 = g_color_952;
}
if (imacd_352 > imacd_360 && imacd_352 > 0.0) {
text_296 = "-";
color_44 = g_color_948;
}
if (imacd_352 <= imacd_360 && imacd_352 < 0.0) {
text_296 = "-";
color_44 = g_color_960;
}
if (imacd_368 > imacd_376) {
text_304 = "-";
color_48 = g_color_956;
}
if (imacd_368 <= imacd_376) {
text_304 = "-";
color_48 = g_color_952;
}
if (imacd_368 > imacd_376 && imacd_368 > 0.0) {
text_304 = "-";
color_48 = g_color_948;
}
if (imacd_368 <= imacd_376 && imacd_368 < 0.0) {
text_304 = "-";
color_48 = g_color_960;
}
if (imacd_384 > imacd_392) {
text_312 = "-";
color_52 = g_color_956;
}
if (imacd_384 <= imacd_392) {
text_312 = "-";
color_52 = g_color_952;
}
if (imacd_384 > imacd_392 && imacd_384 > 0.0) {
text_312 = "-";
color_52 = g_color_948;
}
if (imacd_384 <= imacd_392 && imacd_384 < 0.0) {
text_312 = "-";
color_52 = g_color_960;
}
if (imacd_400 > imacd_408) {
text_272 = "-";
color_32 = g_color_956;
}
if (imacd_400 <= imacd_408) {
text_272 = "-";
color_32 = g_color_952;
}
if (imacd_400 > imacd_408 && imacd_400 > 0.0) {
text_272 = "-";
color_32 = g_color_948;
}
if (imacd_400 <= imacd_408 && imacd_400 < 0.0) {
text_272 = "-";
color_32 = g_color_960;
}
if (imacd_416 > imacd_424) {
text_280 = "-";
color_36 = g_color_956;
}
if (imacd_416 <= imacd_424) {
text_280 = "-";
color_36 = g_color_952;
}
if (imacd_416 > imacd_424 && imacd_416 > 0.0) {
text_280 = "-";
color_36 = g_color_948;
}
if (imacd_416 <= imacd_424 && imacd_416 < 0.0) {
text_280 = "-";
color_36 = g_color_960;
}
if (imacd_432 > imacd_440) {
text_264 = "-";
color_28 = g_color_956;
}
if (imacd_432 <= imacd_440) {
text_264 = "-";
color_28 = g_color_952;
}
if (imacd_432 > imacd_440 && imacd_432 > 0.0) {
text_264 = "-";
color_28 = g_color_948;
}
if (imacd_432 <= imacd_440 && imacd_432 < 0.0) {
text_264 = "-";
color_28 = g_color_960;
}
ObjectDelete("SSignalMACD_TEXT");
ObjectCreate("SSignalMACD_TEXT", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SSignalMACD_TEXT", "MACD", 6, "Tahoma Narrow", g_color_888);
ObjectSet("SSignalMACD_TEXT", OBJPROP_CORNER, g_corner_856);
ObjectSet("SSignalMACD_TEXT", OBJPROP_XDISTANCE, gi_864 + 153);
ObjectSet("SSignalMACD_TEXT", OBJPROP_YDISTANCE, gi_860 + 35);
ObjectDelete("SSignalMACDM1");
ObjectCreate("SSignalMACDM1", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SSignalMACDM1", text_288, 45, "Tahoma Narrow", color_40);
ObjectSet("SSignalMACDM1", OBJPROP_CORNER, g_corner_856);
ObjectSet("SSignalMACDM1", OBJPROP_XDISTANCE, gi_864 + 130);
ObjectSet("SSignalMACDM1", OBJPROP_YDISTANCE, gi_860 + 2);
ObjectDelete("SSignalMACDM5");
ObjectCreate("SSignalMACDM5", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SSignalMACDM5", text_296, 45, "Tahoma Narrow", color_44);
ObjectSet("SSignalMACDM5", OBJPROP_CORNER, g_corner_856);
ObjectSet("SSignalMACDM5", OBJPROP_XDISTANCE, gi_864 + 110);
ObjectSet("SSignalMACDM5", OBJPROP_YDISTANCE, gi_860 + 2);
ObjectDelete("SSignalMACDM15");
ObjectCreate("SSignalMACDM15", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SSignalMACDM15", text_304, 45, "Tahoma Narrow", color_48);
ObjectSet("SSignalMACDM15", OBJPROP_CORNER, g_corner_856);
ObjectSet("SSignalMACDM15", OBJPROP_XDISTANCE, gi_864 + 90);
ObjectSet("SSignalMACDM15", OBJPROP_YDISTANCE, gi_860 + 2);
ObjectDelete("SSignalMACDM30");
ObjectCreate("SSignalMACDM30", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SSignalMACDM30", text_312, 45, "Tahoma Narrow", color_52);
ObjectSet("SSignalMACDM30", OBJPROP_CORNER, g_corner_856);
ObjectSet("SSignalMACDM30", OBJPROP_XDISTANCE, gi_864 + 70);
ObjectSet("SSignalMACDM30", OBJPROP_YDISTANCE, gi_860 + 2);
ObjectDelete("SSignalMACDH1");
ObjectCreate("SSignalMACDH1", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SSignalMACDH1", text_272, 45, "Tahoma Narrow", color_32);
ObjectSet("SSignalMACDH1", OBJPROP_CORNER, g_corner_856);
ObjectSet("SSignalMACDH1", OBJPROP_XDISTANCE, gi_864 + 50);
ObjectSet("SSignalMACDH1", OBJPROP_YDISTANCE, gi_860 + 2);
ObjectDelete("SSignalMACDH4");
ObjectCreate("SSignalMACDH4", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SSignalMACDH4", text_280, 45, "Tahoma Narrow", color_36);
ObjectSet("SSignalMACDH4", OBJPROP_CORNER, g_corner_856);
ObjectSet("SSignalMACDH4", OBJPROP_XDISTANCE, gi_864 + 30);
ObjectSet("SSignalMACDH4", OBJPROP_YDISTANCE, gi_860 + 2);
ObjectDelete("SSignalMACDD1");
ObjectCreate("SSignalMACDD1", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SSignalMACDD1", text_264, 45, "Tahoma Narrow", color_28);
ObjectSet("SSignalMACDD1", OBJPROP_CORNER, g_corner_856);
ObjectSet("SSignalMACDD1", OBJPROP_XDISTANCE, gi_864 + 10);
ObjectSet("SSignalMACDD1", OBJPROP_YDISTANCE, gi_860 + 2);
double irsi_448 = iRSI(NULL, g_timeframe_852, g_period_980, g_applied_price_984, 0);
double irsi_456 = iRSI(NULL, g_timeframe_848, g_period_980, g_applied_price_984, 0);
double irsi_464 = iRSI(NULL, g_timeframe_844, g_period_980, g_applied_price_984, 0);
double irsi_472 = iRSI(NULL, g_timeframe_840, g_period_980, g_applied_price_984, 0);
double irsi_480 = iRSI(NULL, g_timeframe_836, g_period_980, g_applied_price_984, 0);
double irsi_488 = iRSI(NULL, g_timeframe_832, g_period_980, g_applied_price_984, 0);
double irsi_496 = iRSI(NULL, g_timeframe_828, g_period_980, g_applied_price_984, 0);
double istochastic_504 = iStochastic(NULL, g_timeframe_852, g_period_1012, g_period_1016, g_slowing_1020, g_ma_method_1024, 0, MODE_MAIN, 0);
double istochastic_512 = iStochastic(NULL, g_timeframe_848, g_period_1012, g_period_1016, g_slowing_1020, g_ma_method_1024, 0, MODE_MAIN, 0);
double istochastic_520 = iStochastic(NULL, g_timeframe_844, g_period_1012, g_period_1016, g_slowing_1020, g_ma_method_1024, 0, MODE_MAIN, 0);
double istochastic_528 = iStochastic(NULL, g_timeframe_840, g_period_1012, g_period_1016, g_slowing_1020, g_ma_method_1024, 0, MODE_MAIN, 0);
double istochastic_536 = iStochastic(NULL, g_timeframe_836, g_period_1012, g_period_1016, g_slowing_1020, g_ma_method_1024, 0, MODE_MAIN, 0);
double istochastic_544 = iStochastic(NULL, g_timeframe_832, g_period_1012, g_period_1016, g_slowing_1020, g_ma_method_1024, 0, MODE_MAIN, 0);
double istochastic_552 = iStochastic(NULL, g_timeframe_828, g_period_1012, g_period_1016, g_slowing_1020, g_ma_method_1024, 0, MODE_MAIN, 0);
double icci_560 = iCCI(NULL, g_timeframe_852, g_period_996, g_applied_price_1000, 0);
double icci_568 = iCCI(NULL, g_timeframe_848, g_period_996, g_applied_price_1000, 0);
double icci_576 = iCCI(NULL, g_timeframe_844, g_period_996, g_applied_price_1000, 0);
double icci_584 = iCCI(NULL, g_timeframe_840, g_period_996, g_applied_price_1000, 0);
double icci_592 = iCCI(NULL, g_timeframe_836, g_period_996, g_applied_price_1000, 0);
double icci_600 = iCCI(NULL, g_timeframe_832, g_period_996, g_applied_price_1000, 0);
double icci_608 = iCCI(NULL, g_timeframe_828, g_period_996, g_applied_price_1000, 0);
string text_616 = "";
string text_624 = "";
string text_632 = "";
string text_640 = "";
string text_648 = "";
string text_656 = "";
string text_664 = "";
string ls_unused_672 = "";
string ls_unused_680 = "";
text_664 = "-";
color color_688 = g_color_1044;
text_648 = "-";
color color_692 = g_color_1044;
text_616 = "-";
color color_696 = g_color_1044;
text_656 = "-";
color color_700 = g_color_1044;
text_624 = "-";
color color_704 = g_color_1044;
text_632 = "-";
color color_708 = g_color_1044;
text_640 = "-";
color color_712 = g_color_1044;
if (irsi_448 > 50.0 && istochastic_504 > 40.0 && icci_560 > 0.0) {
text_664 = "-";
color_688 = g_color_1036;
}
if (irsi_456 > 50.0 && istochastic_512 > 40.0 && icci_568 > 0.0) {
text_648 = "-";
color_692 = g_color_1036;
}
if (irsi_464 > 50.0 && istochastic_520 > 40.0 && icci_576 > 0.0) {
text_616 = "-";
color_696 = g_color_1036;
}
if (irsi_472 > 50.0 && istochastic_528 > 40.0 && icci_584 > 0.0) {
text_656 = "-";
color_700 = g_color_1036;
}
if (irsi_480 > 50.0 && istochastic_536 > 40.0 && icci_592 > 0.0) {
text_624 = "-";
color_704 = g_color_1036;
}
if (irsi_488 > 50.0 && istochastic_544 > 40.0 && icci_600 > 0.0) {
text_632 = "-";
color_708 = g_color_1036;
}
if (irsi_496 > 50.0 && istochastic_552 > 40.0 && icci_608 > 0.0) {
text_640 = "-";
color_712 = g_color_1036;
}
if (irsi_448 < 50.0 && istochastic_504 < 60.0 && icci_560 < 0.0) {
text_664 = "-";
color_688 = g_color_1040;
}
if (irsi_456 < 50.0 && istochastic_512 < 60.0 && icci_568 < 0.0) {
text_648 = "-";
color_692 = g_color_1040;
}
if (irsi_464 < 50.0 && istochastic_520 < 60.0 && icci_576 < 0.0) {
text_616 = "-";
color_696 = g_color_1040;
}
if (irsi_472 < 50.0 && istochastic_528 < 60.0 && icci_584 < 0.0) {
text_656 = "-";
color_700 = g_color_1040;
}
if (irsi_480 < 50.0 && istochastic_536 < 60.0 && icci_592 < 0.0) {
text_624 = "-";
color_704 = g_color_1040;
}
if (irsi_488 < 50.0 && istochastic_544 < 60.0 && icci_600 < 0.0) {
text_632 = "-";
color_708 = g_color_1040;
}
if (irsi_496 < 50.0 && istochastic_552 < 60.0 && icci_608 < 0.0) {
text_640 = "-";
color_712 = g_color_1040;
}
ObjectDelete("SSignalSTR_TEXT");
ObjectCreate("SSignalSTR_TEXT", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SSignalSTR_TEXT", "STR", 6, "Tahoma Narrow", g_color_888);
ObjectSet("SSignalSTR_TEXT", OBJPROP_CORNER, g_corner_856);
ObjectSet("SSignalSTR_TEXT", OBJPROP_XDISTANCE, gi_864 + 153);
ObjectSet("SSignalSTR_TEXT", OBJPROP_YDISTANCE, gi_860 + 43);
ObjectDelete("SignalSTRM1");
ObjectCreate("SignalSTRM1", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalSTRM1", text_640, 45, "Tahoma Narrow", color_712);
ObjectSet("SignalSTRM1", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalSTRM1", OBJPROP_XDISTANCE, gi_864 + 130);
ObjectSet("SignalSTRM1", OBJPROP_YDISTANCE, gi_860 + 10);
ObjectDelete("SignalSTRM5");
ObjectCreate("SignalSTRM5", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalSTRM5", text_632, 45, "Tahoma Narrow", color_708);
ObjectSet("SignalSTRM5", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalSTRM5", OBJPROP_XDISTANCE, gi_864 + 110);
ObjectSet("SignalSTRM5", OBJPROP_YDISTANCE, gi_860 + 10);
ObjectDelete("SignalSTRM15");
ObjectCreate("SignalSTRM15", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalSTRM15", text_624, 45, "Tahoma Narrow", color_704);
ObjectSet("SignalSTRM15", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalSTRM15", OBJPROP_XDISTANCE, gi_864 + 90);
ObjectSet("SignalSTRM15", OBJPROP_YDISTANCE, gi_860 + 10);
ObjectDelete("SignalSTRM30");
ObjectCreate("SignalSTRM30", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalSTRM30", text_656, 45, "Tahoma Narrow", color_700);
ObjectSet("SignalSTRM30", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalSTRM30", OBJPROP_XDISTANCE, gi_864 + 70);
ObjectSet("SignalSTRM30", OBJPROP_YDISTANCE, gi_860 + 10);
ObjectDelete("SignalSTRH1");
ObjectCreate("SignalSTRH1", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalSTRH1", text_616, 45, "Tahoma Narrow", color_696);
ObjectSet("SignalSTRH1", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalSTRH1", OBJPROP_XDISTANCE, gi_864 + 50);
ObjectSet("SignalSTRH1", OBJPROP_YDISTANCE, gi_860 + 10);
ObjectDelete("SignalSTRH4");
ObjectCreate("SignalSTRH4", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalSTRH4", text_648, 45, "Tahoma Narrow", color_692);
ObjectSet("SignalSTRH4", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalSTRH4", OBJPROP_XDISTANCE, gi_864 + 30);
ObjectSet("SignalSTRH4", OBJPROP_YDISTANCE, gi_860 + 10);
ObjectDelete("SignalSTRD1");
ObjectCreate("SignalSTRD1", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalSTRD1", text_664, 45, "Tahoma Narrow", color_688);
ObjectSet("SignalSTRD1", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalSTRD1", OBJPROP_XDISTANCE, gi_864 + 10);
ObjectSet("SignalSTRD1", OBJPROP_YDISTANCE, gi_860 + 10);
double ima_716 = iMA(Symbol(), g_timeframe_828, g_period_1056, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_724 = iMA(Symbol(), g_timeframe_828, g_period_1060, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_732 = iMA(Symbol(), g_timeframe_832, g_period_1056, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_740 = iMA(Symbol(), g_timeframe_832, g_period_1060, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_748 = iMA(Symbol(), g_timeframe_836, g_period_1056, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_756 = iMA(Symbol(), g_timeframe_836, g_period_1060, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_764 = iMA(Symbol(), g_timeframe_840, g_period_1056, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_772 = iMA(Symbol(), g_timeframe_840, g_period_1060, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_780 = iMA(Symbol(), g_timeframe_844, g_period_1056, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_788 = iMA(Symbol(), g_timeframe_844, g_period_1060, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_796 = iMA(Symbol(), g_timeframe_848, g_period_1056, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_804 = iMA(Symbol(), g_timeframe_848, g_period_1060, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_812 = iMA(Symbol(), g_timeframe_852, g_period_1056, 0, g_ma_method_1064, g_applied_price_1068, 0);
double ima_820 = iMA(Symbol(), g_timeframe_852, g_period_1060, 0, g_ma_method_1064, g_applied_price_1068, 0);
string text_828 = "";
string text_836 = "";
string text_844 = "";
string text_852 = "";
string text_860 = "";
string text_868 = "";
string text_876 = "";
string ls_unused_884 = "";
string ls_unused_892 = "";
if (ima_716 > ima_724) {
text_828 = "-";
color_64 = g_color_1080;
}
if (ima_716 <= ima_724) {
text_828 = "-";
color_64 = g_color_1084;
}
if (ima_732 > ima_740) {
text_836 = "-";
color_68 = g_color_1080;
}
if (ima_732 <= ima_740) {
text_836 = "-";
color_68 = g_color_1084;
}
if (ima_748 > ima_756) {
text_844 = "-";
color_72 = g_color_1080;
}
if (ima_748 <= ima_756) {
text_844 = "-";
color_72 = g_color_1084;
}
if (ima_764 > ima_772) {
text_852 = "-";
color_76 = g_color_1080;
}
if (ima_764 <= ima_772) {
text_852 = "-";
color_76 = g_color_1084;
}
if (ima_780 > ima_788) {
text_860 = "-";
color_80 = g_color_1080;
}
if (ima_780 <= ima_788) {
text_860 = "-";
color_80 = g_color_1084;
}
if (ima_796 > ima_804) {
text_868 = "-";
color_84 = g_color_1080;
}
if (ima_796 <= ima_804) {
text_868 = "-";
color_84 = g_color_1084;
}
if (ima_812 > ima_820) {
text_876 = "-";
color_88 = g_color_1080;
}
if (ima_812 <= ima_820) {
text_876 = "-";
color_88 = g_color_1084;
}
ObjectDelete("SignalEMA_TEXT");
ObjectCreate("SignalEMA_TEXT", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalEMA_TEXT", "EMA", 6, "Tahoma Narrow", g_color_888);
ObjectSet("SignalEMA_TEXT", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalEMA_TEXT", OBJPROP_XDISTANCE, gi_864 + 153);
ObjectSet("SignalEMA_TEXT", OBJPROP_YDISTANCE, gi_860 + 51);
ObjectDelete("SignalEMAM1");
ObjectCreate("SignalEMAM1", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalEMAM1", text_828, 45, "Tahoma Narrow", color_64);
ObjectSet("SignalEMAM1", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalEMAM1", OBJPROP_XDISTANCE, gi_864 + 130);
ObjectSet("SignalEMAM1", OBJPROP_YDISTANCE, gi_860 + 18);
ObjectDelete("SignalEMAM5");
ObjectCreate("SignalEMAM5", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalEMAM5", text_836, 45, "Tahoma Narrow", color_68);
ObjectSet("SignalEMAM5", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalEMAM5", OBJPROP_XDISTANCE, gi_864 + 110);
ObjectSet("SignalEMAM5", OBJPROP_YDISTANCE, gi_860 + 18);
ObjectDelete("SignalEMAM15");
ObjectCreate("SignalEMAM15", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalEMAM15", text_844, 45, "Tahoma Narrow", color_72);
ObjectSet("SignalEMAM15", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalEMAM15", OBJPROP_XDISTANCE, gi_864 + 90);
ObjectSet("SignalEMAM15", OBJPROP_YDISTANCE, gi_860 + 18);
ObjectDelete("SignalEMAM30");
ObjectCreate("SignalEMAM30", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalEMAM30", text_852, 45, "Tahoma Narrow", color_76);
ObjectSet("SignalEMAM30", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalEMAM30", OBJPROP_XDISTANCE, gi_864 + 70);
ObjectSet("SignalEMAM30", OBJPROP_YDISTANCE, gi_860 + 18);
ObjectDelete("SignalEMAH1");
ObjectCreate("SignalEMAH1", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalEMAH1", text_860, 45, "Tahoma Narrow", color_80);
ObjectSet("SignalEMAH1", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalEMAH1", OBJPROP_XDISTANCE, gi_864 + 50);
ObjectSet("SignalEMAH1", OBJPROP_YDISTANCE, gi_860 + 18);
ObjectDelete("SignalEMAH4");
ObjectCreate("SignalEMAH4", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalEMAH4", text_868, 45, "Tahoma Narrow", color_84);
ObjectSet("SignalEMAH4", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalEMAH4", OBJPROP_XDISTANCE, gi_864 + 30);
ObjectSet("SignalEMAH4", OBJPROP_YDISTANCE, gi_860 + 18);
ObjectDelete("SignalEMAD1");
ObjectCreate("SignalEMAD1", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("SignalEMAD1", text_876, 45, "Tahoma Narrow", color_88);
ObjectSet("SignalEMAD1", OBJPROP_CORNER, g_corner_856);
ObjectSet("SignalEMAD1", OBJPROP_XDISTANCE, gi_864 + 10);
ObjectSet("SignalEMAD1", OBJPROP_YDISTANCE, gi_860 + 18);
double ld_900 = NormalizeDouble(MarketInfo(Symbol(), MODE_BID), Digits);
double ima_908 = iMA(Symbol(), PERIOD_M1, 1, 0, MODE_EMA, PRICE_CLOSE, 1);
string ls_unused_916 = "";
if (ima_908 > ld_900) {
ls_unused_916 = "";
color_92 = g_color_924;
}
if (ima_908 < ld_900) {
ls_unused_916 = "";
color_92 = g_color_920;
}
if (ima_908 == ld_900) {
ls_unused_916 = "";
color_92 = g_color_928;
}
ObjectDelete("cja");
ObjectCreate("cja", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("cja", "cja", 8, "Tahoma Narrow", DimGray);
ObjectSet("cja", OBJPROP_CORNER, g_corner_856);
ObjectSet("cja", OBJPROP_XDISTANCE, gi_864 + 153);
ObjectSet("cja", OBJPROP_YDISTANCE, gi_860 + 23);
if (gi_880 == FALSE) {
if (gi_872 == TRUE) {
ObjectDelete("Signalprice");
ObjectCreate("Signalprice", OBJ_LABEL, g_window_868, 0, 0);
ObjectSetText("Signalprice", DoubleToStr(ld_900, Digits), 35, "Arial", color_92);