-
Notifications
You must be signed in to change notification settings - Fork 0
/
MMO.cs
2757 lines (2383 loc) · 114 KB
/
MMO.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
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
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Xml.Serialization;
using NinjaTrader.Cbi;
using NinjaTrader.Data;
using NinjaTrader.Gui.Chart;
//mm-studios
// This namespace holds all indicators and is required. Do not change it.
namespace NinjaTrader.Indicator {
[Description("Martin Miller Oscilator")]
public class MMO : Indicator {
private double wick_length=0.70;
private int period = 14;
private Estrategia strategy=Estrategia.Vicente;
private int activity_interval_from=80000; //8:00 AM
private int activity_interval_to=220000; //10:00 PM
private int macd_slow_period=26;
private int macd_fast_period=12;
private int macd_signal_period=9;
private double MACD_umbral_venta=0.4; // configurable entre 0 y 1
private double MACD_umbral_compra=-0.4; // configurable entre 0 y -1
private int trend_MACD_diff_period=3; //numero de barras usadas en el calculo de la tendencia de la linea MACD.Diff
private int estocasticoA_D=3;
private int estocasticoA_K=14;
private int estocasticoA_smooth=3;
private int estocasticoA_valor_periodo=1; //min
private double estocasticoA_umbral_venta=85;
private double estocasticoA_umbral_compra=15;
private LineaEstocastico linea_estocasticoA=LineaEstocastico.D;
private int estocasticoB_D=3;
private int estocasticoB_K=14;
private int estocasticoB_smooth=3;
private int estocasticoB1_valor_periodo=5; //min
private int estocasticoB2_valor_periodo=3; //min
private int estocasticoB3_valor_periodo=10; //min
private double estocasticoB_umbral_venta=70;
private double estocasticoB_umbral_compra=30;
private LineaEstocastico linea_estocasticoB=LineaEstocastico.D;
private int rsi_period=14;
private int rsi_smooth=3;
private double RSI_umbral_venta=70;
private double RSI_umbral_compra=30;
//private int STORSI_period=14;
private int stochasticsrsi_period=14;
private int ATR_period=14;
private double ATR_amplificacion=2.0;
private int adx_period=14;
private double ADX_umbral_minimo=20;
// private int stochastics5m_sD_period=3;
// private int stochastics5m_fK_period=14;
// private int stochastics5m_sK_period=3;
//-------------------gestion contratos
private int enter_contratos=3;
private double stop_loss=2.00; //Parámetro Stop Loss, entre 1 y 3 puntos de diferencia con el precio de entrada
private double stop_profit=1.00;
private double trailing_step=2.00; ///
private CondicionSalida condicion_salida_contrato1=CondicionSalida.stop_profit;
private CondicionSalida condicion_salida_contrato2=CondicionSalida.estocastico_cruza_nivel;
private CondicionSalida condicion_salida_contrato3=CondicionSalida.estocastico_gira;
private bool ruleL1=true;
private bool ruleL2=true;
private bool ruleL3=true;
private bool ruleL4=true;
private bool ruleL5=true;
private bool ruleL6=true; ///RSI
private bool ruleL7=true; ///STORSI
private bool ruleL8=true; ///ADX
private bool ruleL9=true; ///Stochastic B
private int L6_RSI_velas=3;
private int L9_num_estocasticos=1;
private bool ruleV1=true; //vol
private bool ruleV2=true; //giro
private bool ruleV2_1=true;
private bool ruleV2_2=true;
private bool ruleV2_3=true;
private bool ruleV2_4=true;
//----------------------------------------------------------------/ parameters
private bool write_MMOlog=false;
private int ciclo=0;
private int num_entradas=0;
private int num_contratos_ganadores=0;
private int num_contratos_perdedores=0;
private double pl=0;
private Font textfont=new Font("Arial Narrow",10);
protected override void Initialize() {
//CalculateOnBarClose = true;
Plot short_plot=new Plot(new Pen(Color.LightPink,5), PlotStyle.Bar, "EnterShort");
// short_plot.Min=-4;
// short_plot.Max=0;
Add(short_plot);
Plot long_plot=new Plot(new Pen(Color.LightBlue,5), PlotStyle.Bar, "EnterLong");
// long_plot.Min=0;
// long_plot.Max=4;
Add(long_plot);
Add(new Line(Color.Gray,0,"Noop"));
Overlay=false;
//http://www.ninjatrader.com/support/helpGuides/nt7/index.html?multi_time_frame__instruments.htm
// Add(PeriodType.Minute, 5); //becomes BarsArray[1]
Add(PeriodType.Minute, estocasticoB1_valor_periodo); //becomes BarsArray[1]
Add(PeriodType.Minute, estocasticoA_valor_periodo); //becomes BarsArray[2]
Add(PeriodType.Minute, estocasticoB2_valor_periodo); //becomes BarsArray[1]
Add(PeriodType.Minute, estocasticoB3_valor_periodo); //becomes BarsArray[1]
//Add(PeriodType.Second, 10); //becomes BarsArray[1]
if (write_MMOlog) {
Print("I");
string fn=Cbi.Core.UserDataDir.ToString() + "MMOlog.txt";
Print(fn);
using(System.IO.StreamWriter file = new System.IO.StreamWriter(Cbi.Core.UserDataDir.ToString() + "MMOlog.txt")) {
Print("CREado MMOlog");
file.WriteLine("NEW FILE");
}
write_params();
}
}
public struct decision {
public bool sell;
public bool buy;
}
//-------------------------------------------------------------------------------------luis
/*
// 3) Macd por encima de un parámetro (nunca menos de 0, máximo 6)
cambios:
antes: MACD, umbral venta, valor entre 0 y 1
despues: MACD, umbral venta, valor entre 0 y 6
antes: MACD, umbral compra, valor entre 0 y -1
despues: MACD, umbral compra, valor entre 0 y -6
*/
public bool trending_up(IDataSeries data,int numbars,int endbar) {
double v=data[endbar];
for (int i=endbar+1; i<endbar+numbars; ++i) {
if (data[i]>v) return false;
v=data[i];
}
return true;
}
public bool trending_down(IDataSeries data,int numbars,int endbar) {
double v=data[endbar];
for (int i=endbar+1; i<endbar+numbars; ++i) {
if (data[i]<v) return false;
v=data[i];
}
return true;
}
/*
public bool filter_1(Stochastics sto) {
Console.Write("Filtro 1: ");
if (!filter1) {
Console.WriteLine("off");
return true;
}
//1) Que el indicador estocástico este por encima de un nivel configurable y venga de más arriba. Cuando empiece a caer.
//1) Estocastico mayor de un parámetro (nunca menos de 80)
if (sto.D[0]>estocastico_umbral_venta) {
Print("+Stochastics D is above the limit at "+estocastico_umbral_venta);
return false;
}
*/
public bool rule_L1(bool sell, Stochastics stoA) {
string rule=" Regla L1: ";
string desc="Estocastico A rebasa umbral";
if (!ruleL1) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
double v=0;
if (linea_estocasticoA==LineaEstocastico.D) {
v=stoA.D[0];
}
if (linea_estocasticoA==LineaEstocastico.K) {
v=stoA.K[0];
}
if (sell) {
desc+=" sto > "+estocasticoA_umbral_venta;
//1) Que el indicador estocástico este por encima de un nivel configurable y venga de más arriba. Cuando empiece a caer.
//1) Estocastico mayor de un parámetro (nunca menos de 80)
if (v>estocasticoA_umbral_venta) {
Print(rule+"[si] " + desc);
return true;
}
}
else {
desc+=" sto < "+estocasticoA_umbral_compra;
//1) Que el indicador estocástico este por debajo de un nivel configurable y venga de más abajo. Cuando empiece a crecer.
//1) Estocastico menor de un parámetro (nunca mas de 20)
if (v<estocasticoA_umbral_compra) {
Print(rule+"[si] " + desc);
return true;
}
}
Print(rule+"[no] " + desc);
return false;
}
public bool rule_L2(bool sell, Stochastics stoA) {
string rule=" Regla L2: ";
string desc="Estocastico acaba de girar";
if (!ruleL2) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
DataSeries S=stoA.D;
if (linea_estocasticoA==LineaEstocastico.K) {
S=stoA.K;
}
if (sell) {
//2) Estocástico (D) vela 0 menor que estocástico (D) vela 1
if (S[0]<S[1]) { //y decreciendo
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
}
else {
//2) Estocástico (D) vela 0 mayor que estocástico (D) vela 1
if (S[0]>S[1]) { //y creciendo
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
}
return false;
}
public bool rule_L3(bool sell, MACD macd) {
string rule=" Regla L3: ";
string desc="MACD rebasa umbral";
if (!ruleL3) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
if (sell) {
// 3) Que el indicador macd esté por encima de un nivel configurable
// 3) Macd por encima de un parámetro (nunca menos de 0, máximo 6)
if (macd[0]>MACD_umbral_venta) {
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
}
else {
// 3) Que el indicador macd esté por debajo de un nivel configurable
// 3) Macd por debajo de un parámetro (nunca mas de 0, mínimo -6)
if (macd[0]<MACD_umbral_compra) { //-0.4
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
}
return false;
}
public bool rule_L4(bool sell, MACD macd) {
string rule=" Regla L4: ";
string desc="tendencia MACD.Diff";
if (!ruleL4) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
if (sell) {
/*
La tendencia que buscamos en el diff, en el caso corto es que después de
unas velas disminuya y en el caso largo, que aumente. ¿podríamos definir el
número de velas? Es decir, no como esta ahora que en el corto sea menor que
1 o 2 anteriores sino que el corto podamos definir cuantas barras que remos
al alza previas al giro y cuantas a la baja en el largo, por ejemplo
Corto
vela 0, valor 3
vela 1, valor 4
vela 2, valor 3
vela 3, valor 2
Es decir, 3 asecentes seguidas y la primera que decrece es 4
*/
if (trending_up(macd.Diff,trend_MACD_diff_period,1)) { ///conducta ascendente durante todas las N barras anteriores a la 0
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
}
else {
if (trending_down(macd.Diff,trend_MACD_diff_period,1)) { ///conducta descendente durante todas las N barras anteriores a la 0
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
}
return false;
}
public bool rule_L5(bool sell, MACD macd) {
string rule=" Regla L5: ";
string desc="MACD.Diff gira";
if (!ruleL5) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
if (sell) {
//5) Macd (diff) vela 0 por debajo de Macd (diff) vela 1
if (macd.Diff[0] < macd.Diff[1]) { //Que la diferencia entre las dos medias del macd (diff) de la vela 0 sea MENOR que la de la vela 1 o que las dos velas anteriores
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
}
else {
//5) Macd (diff) vela 0 por encima de Macd (diff) vela 1
if (macd.Diff[0] > macd.Diff[1]) { //Que la diferencia entre las dos medias del macd (diff) de la vela 0 sea MENOR que la de la vela 1 o que las dos velas anteriores
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
}
return false;
}
public bool rule_L6(bool sell, RSI rsi) {
string rule=" Regla L6: ";
string desc="RSI rebasa umbral";
if (!ruleL6) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
if (sell) {
//que en la vela 0, 1 o 2 tenga mas valor que el parámetro
if (MAX(rsi,L6_RSI_velas)[0] > RSI_umbral_venta) {
Print(rule+"[si] " + desc);
return true;
}
}
else {
//que en la vela 0, 1 o 2 tenga menos valor que el parámetro
if (MIN(rsi,L6_RSI_velas)[0] < RSI_umbral_compra) {
Print(rule+"[si] " + desc);
return true;
}
}
Print(rule+"[no] " + desc);
return false;
}
public bool rule_L7(bool sell, StochRSI storsi) {
string rule=" Regla L7: ";
string desc="STORSI gira desde extremo";
if (!ruleL7) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
if (sell) {
if (storsi[1]==1 && storsi[1]>storsi[0]) {
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
}
else {
if (storsi[1]==0 && storsi[1]<storsi[0]) {
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
}
return false;
}
public bool rule_L8(ADX adx) {
string rule=" Regla L8: ";
string desc="ADX por encima de umbral";
if (!ruleL8) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
if (adx[0]>=ADX_umbral_minimo) {
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
return false;
}
public bool rule_L9(bool sell, Stochastics stoB) {
string rule=" Regla L9: ";
string desc="Estocastico B rebasa umbral";
if (!ruleL9) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
DataSeries S=stoB.D;
if (linea_estocasticoB==LineaEstocastico.K) {
S=stoB.K;
if (CurrentBars[1] <= estocasticoB_K) {
Print(rule+"[no] "+desc+". No tiene suficientes barras ("+CurrentBars[1]+"/"+estocasticoA_K+")");
return false;
}
}
else {
if (CurrentBars[1] <= estocasticoB_D) {
Print(rule+"[no] "+desc+". No tiene suficientes barras ("+CurrentBars[1]+"/"+estocasticoA_D+")");
return false;
}
}
if (sell) {
desc+=" sto5 > "+estocasticoB_umbral_venta;
if (S[0]>estocasticoB_umbral_venta) {
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
}
else {
desc+=" sto5 < "+estocasticoB_umbral_compra;
if (S[0]<estocasticoB_umbral_compra) {
Print(rule+"[si] " + desc);
return true;
}
Print(rule+"[no] " + desc);
}
return false;
}
public bool rule_L9(bool sell, Stochastics stoB1, Stochastics stoB2, Stochastics stoB3) {
bool b1=rule_L9(sell,stoB1);
if (!b1) return false;
if (L9_num_estocasticos<2) return b1;
bool b2=rule_L9(sell,stoB2);
if (!b2) return false;
if (L9_num_estocasticos<3) return b2;
bool b3=rule_L9(sell,stoB3);
return b3;
}
public bool luis_rules(bool mode, Stochastics stoA, MACD macd, RSI rsi, StochRSI storsi, ADX adx, Stochastics stoB1, Stochastics stoB2, Stochastics stoB3) {
int n=0;
if (rule_L1(mode,stoA)) n++;
if (rule_L2(mode,stoA)) n++;
if (rule_L3(mode,macd)) n++;
if (rule_L4(mode,macd)) n++;
if (rule_L5(mode,macd)) n++;
if (rule_L6(mode,rsi)) n++;
if (rule_L7(mode,storsi)) n++;
if (rule_L8(adx)) n++;
if (rule_L9(mode,stoB1,stoB2,stoB3)) n++;
return n==9; //all rules true
}
public decision get_decision_luis(Stochastics stoA, MACD macd, RSI rsi, StochRSI storsi, ADX adx, Stochastics stoB1, Stochastics stoB2, Stochastics stoB3) {
decision ret;
ret.sell=false;
ret.buy=false;
// Print("macd="+macd[0]);
// Print("Stochastics D="+sto.D[0]);
//Corto:
Print("Corto:");
if (luis_rules(true,stoA,macd,rsi,storsi,adx,stoB1,stoB2,stoB3)) {
ret.sell=true;
}
Print("Largo:");
if (luis_rules(false,stoA,macd,rsi,storsi,adx,stoB1,stoB2,stoB3)) {
ret.buy=true;
}
return ret;
}
//-------------------------------------------------------------------------------------
//-------------------------------------------------------------------------------------
//-------------------------------------------------------------------------------------
public enum trend {
trend_none,
trend_bearish,
trend_bullish,
}
public trend detect_trend() {
if (bullish()) return trend.trend_bullish;
if (bearish()) return trend.trend_bearish;
return trend.trend_none;
}
public bool bearish() { //no tiene en cuenta la ultima vela, para la detecion de giros
// v1 sea el min de las penultimas N velas
double minvalue=MIN(period)[1];
if (Input[1]<=minvalue) return true;
return false;
}
public bool bullish() { //no tiene en cuenta la ultima vela, para la detecion de giros
double maxvalue=MAX(period)[1];
if (Input[1]>=maxvalue) return true;
return false;
}
public bool is_hammer_up() {
double length=Highs[0][0]-Lows[0][0];
double bottom=(Opens[0][0]>Closes[0][0]?Closes[0][0]:Opens[0][0]);
double topbodylength=Highs[0][0]-bottom;
double wick=length-topbodylength;
double percent=wick/length;
if (percent>wick_length) return true;
return false;
}
public bool is_hammer_down() {
double length=Highs[0][0]-Lows[0][0];
double top=(Opens[0][0]<Closes[0][0]?Closes[0][0]:Opens[0][0]);
double bottombodylength=top-Lows[0][0];
double wick=length-bottombodylength;
double percent=wick/length;
if (percent>wick_length) return true;
return false;
}
//public bool is_intentional_bar() { //sin mecha, volumen alto
//}
public bool rule_V2_4(trend t) {
string rule=" Regla V2.4: ";
string desc="Martillo de giro";
if (!ruleV2_4) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
if (t==trend.trend_bullish) {
if (is_hammer_down()) {
Print(rule+"[si] "+desc);
return true;
}
}
if (t==trend.trend_bearish) {
if (is_hammer_up()) {
Print(rule+"[si] "+desc);
return true;
}
}
Print(rule+"[no] "+desc);
return false;
}
public bool rule_V2_3(trend t) {
string rule=" Regla V2.3: ";
string desc="Contrario a la tendencia";
if (!ruleV2_3) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
if (t==trend.trend_bullish) {
if (Opens[0][0]>Closes[0][0]) { //red(down) candle
Print(rule+"[si] "+desc);
return true;
}
}
if (t==trend.trend_bearish) {
if (Opens[0][0]<Closes[0][0]) { //green(up) candle
Print(rule+"[si] "+desc);
return true;
}
}
Print(rule+"[no] "+desc);
return false;
}
public bool rule_V2_2() {
string rule=" Regla V2.2: ";
string desc="Doji";
if (!ruleV2_2) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
if (Opens[0][0]==Closes[0][0]) {
Print(rule+"[si] "+desc);
return true;
}
Print(rule+"[no] "+desc);
return false;
}
public bool rule_V2_1(trend t) {
string rule=" Regla V2.1: ";
string desc="Hay definida una tendencia";
if (!ruleV2_2) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
if (t==trend.trend_bullish || t==trend.trend_bearish) {
Print(rule+"[si] "+desc);
return true;
}
Print(rule+"[no] "+desc);
return false;
}
/*
public bool is_turn(trend t) {
if (!is_trend(t)) return false;
Print("Trend");
if (is_doji()) {
Print("doji");
return true;
}
if (is_against_trend(t)) {
Print("against trend");
return true;
}
if (is_hammer_turn(t)) {
Print("hammer turn");
return true;
}
return false;
}
*/
public bool rule_V2(trend t) {
string rule=" Regla V2: ";
string desc="Giro";
if (!ruleV2) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
Print("");
bool t1=rule_V2_1(t); ///is trend
bool t2=rule_V2_2(); //doji
bool t3=rule_V2_3(t); //against trend
bool t4=rule_V2_4(t); //hammer turn
Print("");
bool r1=(t1 && t2); //trend+doji
bool r2=(t1 && t3); //trend+against trend
bool r3=(t1 && t4); //trend+hammer turn
bool r=r1 || r2 || r3;
if (r) {
Print(rule+"[si] "+desc);
return true;
}
Print(rule+"[no] "+desc);
return false;
}
public bool rule_V1() {
string rule=" Regla V1: ";
string desc="Pico de volumen";
if (!ruleV1) {
Print(rule+"[si] "+desc+" [filtro desactivado]");
return true;
}
// queremos que el volumen sea mayor todos los N anteriores
if (VOL(BarsArray[0])[0]<MAX(VOL(BarsArray[0]),period)[0]) {
Print(rule+"[si] "+desc);
return true;
}
Print(rule+"[no] "+desc);
return false;
}
public bool vicente_rules(trend t) {
bool t1=rule_V1(); ///Pico de volumen
bool t2=rule_V2(t); ///Giro
bool r1=t1 && t2;
if (r1) {
return true;
}
return false;
}
//-------------------------------------------------------------------------------------vicente
public decision get_decision_vicente() {
decision ret;
ret.sell=false;
ret.buy=false;
trend trend_=detect_trend();
//Corto:
if (vicente_rules(trend_)) {
if (trend_==trend.trend_bearish) ret.sell=true;
if (trend_==trend.trend_bullish) ret.buy=true;
}
return ret;
}
private int have_contracts=0; ///+ve long contracts, -ve=sell contracts
///plot
private int nlon=0; //+ve , per loop count of long contracts
private int nshort=0; //-ve , per loop count of short contracts
public bool enter_long(int contratos) { ///risk+hedge
if (contratos<0) { ///
Print("Error: No deberia ser negativo contratos");
return false;
}
if (contratos==0) { ///acepta 0 contratos, debe devolver true
return true;
}
if (contratos>3) {
Print("Error: No deberia ejecutar mas de 3 contratos");
return false;
}
Print("SIM - ejecutariamos ahora una orden de compra de "+contratos+" contratos");
have_contracts+=contratos;
nlon+=contratos;
return true; //exito .
}
public bool enter_short(int contratos) { ///risk+hedge
if (contratos<0) { ///
Print("Error: No deberia ser negativo contratos");
return false;
}
if (contratos==0) { ///acepta 0 contratos, debe devolver true
return true;
}
if (contratos>3) {
Print("Error: No deberia ejecutar mas de 3 contratos");
return false;
}
Print("SIM - ejecutariamos ahora una orden de venta de "+contratos+" contratos");
have_contracts-=contratos;
nshort-=contratos;
return true; //exito
}
private double risk_price=0;
private double stop_loss_price=0;
private double stop_profit_price=0;
private DateTime time_enter;
public bool risk(Stochastics stoA, MACD macd, RSI rsi, StochRSI storsi, ADX adx, Stochastics stoB1, Stochastics stoB2, Stochastics stoB3) {
Print("");
Print(">>>risk");
if (have_contracts!=0) {
Print("Estamos dentro de una operacion de riesgo");
return false;
}
decision d;
d.buy=d.sell=false;
//RISK
if (strategy==Estrategia.Vicente) d=get_decision_vicente();
if (strategy==Estrategia.Luis) d=get_decision_luis(stoA,macd,rsi,storsi,adx,stoB1,stoB2,stoB3);
if (d.sell || d.buy) {
string esp="";
if (strategy==Estrategia.Luis) {
/*
Hay un indicador que se llama ATR. Tendrías que hacer
una nueva condición que solo se da cuando se produzca una entrada a corto o
a largo de manera que cuando la "pinte" en la pantalla ponga el valor que
el ATR tiene en ese momento por un parámetro que deberíamos seleccionar en
la configuración de nuestro indicador y que va desde 1 a 4. Si el parámetro
es 2 y el atr en el momento de la entrada a corto, por ejemplo, es 0,5.. lo
multiplicaría por el parámetro y.. debería pintar "Corto? 2020,25 - Esp
1,00"
*/
ATR atr=ATR(ATR_period);
double v=Math.Round(ATR_amplificacion*atr[0],2);
esp=" - Esp "+v;
}
if (d.sell && d.buy) {
Print("wrong decision, cannot both buy and sell");
d.buy=false;
}
int contratos=enter_contratos;
if (d.sell) {
if (enter_short(contratos)) {
Print(" >>Entrado Corto");
DrawArrowDown("arrowsell"+Times[0][0],true,Times[0][0],Highs[0][0]+2*TickSize,Color.LightPink);
DrawText("textsell"+Times[0][0],true,"Entra "+contratos+"x"+Closes[0][0].ToString()+esp+" .", Times[0][0], Highs[0][0]+3*TickSize,0,Color.Black,textfont,StringAlignment.Far,Color.LightPink,Color.LightPink,8);
risk_price=Closes[0][0];
//price should go downwards
stop_loss_price=risk_price+stop_loss; //+3
stop_profit_price=risk_price-stop_profit; // -1
time_enter=Times[0][0];
ciclo=0;
num_entradas+=contratos;
}
}
if (d.buy) {
if (enter_long(contratos)) {
Print(" >>Entrando Largo");
DrawArrowUp("arrowbuy"+Times[0][0],true,Times[0][0],Lows[0][0]-2*TickSize,Color.LightBlue);
DrawText("textbuy"+Times[0][0],true,"Entra "+contratos+"x"+Closes[0][0].ToString()+esp+" .", Times[0][0], Lows[0][0]-3*TickSize,0,Color.Black,textfont,StringAlignment.Far,Color.LightBlue,Color.LightBlue,8);
risk_price=Closes[0][0];
//price should go upwards
stop_profit_price=risk_price+stop_profit; //+1
stop_loss_price=risk_price-stop_loss; //-3
time_enter=Times[0][0];
ciclo=0;
num_entradas+=contratos;
}
}
}
return true;
}
public bool exit_long(int contratos, double price) {
if (enter_long(contratos)) {
double current_price=price; //Input[0];
double usd=Math.Round(contratos*(risk_price-current_price)*50,2);
Print(" >>Sale Largo con pl $"+usd);
string msg="";
msg="Sale "+contratos+"x"+current_price+" ("+usd+" USD)";
Color col=Color.Red;
Color dcol=Color.Black;
if (usd>=0) {
col=Color.Green;
dcol=Color.LightGreen;
num_contratos_ganadores+=contratos;
}
else {
num_contratos_perdedores+=contratos;
}
pl+=usd;
DrawDiamond("bdiamondbuy"+Times[0][0],true,Times[0][0],Highs[0][0]+2*TickSize,dcol);
DrawText("textsalebuy"+Times[0][0],true,msg+" .", Times[0][0], Highs[0][0]+3*TickSize,0,col,textfont,StringAlignment.Far,Color.LightBlue,Color.LightBlue,8);
return true;
}
return false;
}
public bool exit_short(int contratos, double price) {
if (enter_short(contratos)) {
double current_price=price; //Input[0];
double usd=Math.Round(contratos*(current_price-risk_price)*50,2);
Print(" >>Sale Corto con pl $"+usd);
string msg="";
Color col=Color.Red;
Color dcol=Color.Black;
if (usd>=0) {
col=Color.Green;
dcol=Color.LightGreen;
num_contratos_ganadores+=contratos;
msg="Sale "+contratos+"x"+current_price+" (+"+usd+" USD)";
}
else {
num_contratos_perdedores+=contratos;
msg="Sale "+contratos+"x"+current_price+" ("+usd+" USD)";
}
pl+=usd;
DrawDiamond("bdiamondsell"+Times[0][0],true,Times[0][0],Highs[0][0]+2*TickSize,dcol);
DrawText("textsalesell"+Times[0][0],true,msg+" .", Times[0][0], Highs[0][0]+3*TickSize,0,col,textfont,StringAlignment.Far,Color.LightPink,Color.LightPink,8);
return true;
}
return false;
}
public bool check_condicion_salida(CondicionSalida cs,bool enteredshort) {
if (cs==CondicionSalida.stop_profit_o_estocastico_cruza_nivel) {
if (check_condicion_salida(CondicionSalida.stop_profit,enteredshort)) {
return true;
}
if (check_condicion_salida(CondicionSalida.estocastico_cruza_nivel,enteredshort)) {
return true;
}
return false;
}
double current_price=Closes[0][0];
if (enteredshort) {
if (cs==CondicionSalida.stop_profit) {
if (Lows[0][0]<stop_profit_price) {
//Si el precio avanza un punto(stop_profit 1) da mensaje de ganancia en la pantalla
// (un diamante verde con el literal "+ 1 *50 USD")
Print ("Crossed Stop-Profit level");
int contratos=1;
if (exit_long(contratos,stop_profit_price)) {
stop_loss_price-=trailing_step; //Automáticamente MOVEMOS el valor de precio del Stop Loss al punto de entrada de la operación (trailling Stop)
stop_profit_price-=trailing_step; //movemos tb el stop_profit
Print("trailing stop-loss se mueve a " + stop_loss_price);
return true;
}
}
}
else if (cs==CondicionSalida.estocastico_cruza_nivel) {
//Si el precio sin embargo, se sigue moviendo en la dirección esperada
//y toca el nivel contrario del Estocástico da mensaje de ganancia en la
//pantalla (un diamante verde con el literal
// "+ 1 * (precio de entrada - precio en el momento de tocar estocástico contrario * 50 USD")
//DataSeries de 1 minuto
Stochastics stoA=Stochastics(BarsArray[0],estocasticoA_D,estocasticoA_K,estocasticoA_smooth);
DataSeries S=stoA.D;
if (linea_estocasticoA==LineaEstocastico.K) {
S=stoA.K;
}
if (S[0]<estocasticoA_umbral_compra) {
Print ("Crossed Stochatics opposite level");
int contratos=1;