-
Notifications
You must be signed in to change notification settings - Fork 2
/
Vegas_S_P_Daily.mq4
168 lines (152 loc) · 5.96 KB
/
Vegas_S_P_Daily.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
//+------------------------------------------------------------------+
//| VegasS&PDaily.mq4 |
//| Vegas |
//| |
//+------------------------------------------------------------------+
#property copyright "Vegas"
#property link ""
#property indicator_chart_window
#property indicator_buffers 8
#property indicator_color1 Green
#property indicator_color2 Blue
#property indicator_color3 Red
#property indicator_color4 Red
#property indicator_color5 Red
#property indicator_color6 Red
#property indicator_color7 Red
#property indicator_color8 Red
//---- input parameters
extern bool Alerts=true;
extern int RiskModel=1;
extern int MA1=24;
extern int MA2=28;
//---- buffers
double ExtMapBuffer1[];
double ExtMapBuffer2[];
double ExtMapBuffer3[];
double ExtMapBuffer4[];
double ExtMapBuffer5[];
double ExtMapBuffer6[];
double ExtMapBuffer7[];
double ExtMapBuffer8[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(1,ExtMapBuffer2);
SetIndexStyle(2,DRAW_LINE);
SetIndexBuffer(2,ExtMapBuffer3);
SetIndexStyle(3,DRAW_LINE);
SetIndexBuffer(3,ExtMapBuffer4);
SetIndexStyle(4,DRAW_LINE);
SetIndexBuffer(4,ExtMapBuffer5);
SetIndexStyle(5,DRAW_LINE);
SetIndexBuffer(5,ExtMapBuffer6);
SetIndexStyle(6,DRAW_LINE);
SetIndexBuffer(6,ExtMapBuffer7);
SetIndexStyle(7,DRAW_LINE);
SetIndexBuffer(7,ExtMapBuffer8);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int limit;
int counted_bars=IndicatorCounted();
//---- check for possible errors
if(counted_bars<0) return(-1);
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
//---- main loop
for(int i=0; i<limit; i++)
{
//---- ma_shift set to 0 because SetIndexShift called abowe
ExtMapBuffer1[i]=iMA(NULL,0,24,0,MODE_EMA,PRICE_CLOSE,i);
ExtMapBuffer2[i]=iMA(NULL,0,28,0,MODE_EMA,PRICE_CLOSE,i);
//Model #1 850,1375,2225
if(RiskModel==1)
{
ExtMapBuffer3[i]=ExtMapBuffer2[i]+850*Point;
ExtMapBuffer4[i]=ExtMapBuffer2[i]+1375*Point;
ExtMapBuffer5[i]=ExtMapBuffer2[i]+2225*Point;
ExtMapBuffer6[i]=ExtMapBuffer2[i]-850*Point;
ExtMapBuffer7[i]=ExtMapBuffer2[i]-1375*Point;
ExtMapBuffer8[i]=ExtMapBuffer2[i]-2225*Point;
}
//Model #2 1375,2225,3600
if(RiskModel==2)
{
ExtMapBuffer3[i]=ExtMapBuffer2[i]+1375*Point;
ExtMapBuffer4[i]=ExtMapBuffer2[i]+2225*Point;
ExtMapBuffer5[i]=ExtMapBuffer2[i]+3600*Point;
ExtMapBuffer6[i]=ExtMapBuffer2[i]-1375*Point;
ExtMapBuffer7[i]=ExtMapBuffer2[i]-2225*Point;
ExtMapBuffer8[i]=ExtMapBuffer2[i]-3600*Point;
}
//Model #3 2225,3600,5825
if(RiskModel==3)
{
ExtMapBuffer3[i]=ExtMapBuffer2[i]+2225*Point;
ExtMapBuffer4[i]=ExtMapBuffer2[i]+3600*Point;
ExtMapBuffer5[i]=ExtMapBuffer2[i]+5825*Point;
ExtMapBuffer6[i]=ExtMapBuffer2[i]-2225*Point;
ExtMapBuffer7[i]=ExtMapBuffer2[i]-3600*Point;
ExtMapBuffer8[i]=ExtMapBuffer2[i]-5825*Point;
}
//Model #4 3600,5825,9425
if(RiskModel==4)
{
ExtMapBuffer3[i]=ExtMapBuffer2[i]+3600*Point;
ExtMapBuffer4[i]=ExtMapBuffer2[i]+5825*Point;
ExtMapBuffer5[i]=ExtMapBuffer2[i]+9425*Point;
ExtMapBuffer6[i]=ExtMapBuffer2[i]-3600*Point;
ExtMapBuffer7[i]=ExtMapBuffer2[i]-5825*Point;
ExtMapBuffer8[i]=ExtMapBuffer2[i]-9425*Point;
}
Comment("\nRISK MODEL #",RiskModel," (1-4)\n\nEMA24 - ",ExtMapBuffer1[limit],"\nEMA28 - ",ExtMapBuffer2[limit],
"\n\nF+1 - ",ExtMapBuffer3[limit],"\nF+2 - ",ExtMapBuffer4[limit],
"\nF+3 - ",ExtMapBuffer5[limit],"\n\nF-1 - ",ExtMapBuffer6[limit],
"\nF-2 - ",ExtMapBuffer7[limit],"\nF-3 - ",ExtMapBuffer8[limit]);
}
//+--------------------------------------------------------------------------+
//- ALERTS PlaySound("alert.wav"); -
//+--------------------------------------------------------------------------+
if(Alerts)
{
if(Close[i]==ExtMapBuffer1[i] || Close[i]==ExtMapBuffer2[i])
{
PlaySound("alert.wav");
}
if(Close[i]==ExtMapBuffer3[i] || Close[i]==ExtMapBuffer4[i] || Close[i]==ExtMapBuffer5[i])
{
PlaySound("alert.wav");
}
if(Close[i]==ExtMapBuffer6[i] || Close[i]==ExtMapBuffer7[i] || Close[i]==ExtMapBuffer8[i])
{
PlaySound("alert.wav");
}
}
//---- done
//----
//----
return(0);
}
//+------------------------------------------------------------------+