Metatrader Forum | Forex Expert-Advisor | Broker & Forex Tools

Metatrader Forum | Forex Expert-Advisor | Broker & Forex Tools (http://www.expert-advisor.com/forum/index.php)
-   Programmierung MQL4 (http://www.expert-advisor.com/forum/forumdisplay.php?f=220)
-   -   Alarm programmieren (http://www.expert-advisor.com/forum/showthread.php?t=4249)

steve468 08.05.15 17:29

Alarm programmieren
 
Hallo, ich brauch mal eure Hilfe.

Ich möchte gern eine Alarmfunktion in folgenden Indikator haben und bekomme es einfach nicht hin. Hab auch schon versucht mir die Buffer mit iCustom in einen neuen Indi zu holen.

Hoffe ihr könnt mir helfen.



#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 Blue
#property indicator_color2 Red
#property indicator_color3 Red
#property indicator_color4 Blue

int num40 = 40;
double appliedprice = 0.0;
double num = 0.0;
double ind2[];
double ind3[];
double ind0[];
double ind1[];
int result;

int init() {
SetIndexStyle(0, DRAW_NONE, STYLE_SOLID, 2);
SetIndexStyle(1, DRAW_NONE, STYLE_SOLID, 2);
SetIndexStyle(2, DRAW_LINE, STYLE_SOLID, 2);
SetIndexStyle(3, DRAW_LINE, STYLE_SOLID, 2);
SetIndexBuffer(0, ind0);
SetIndexBuffer(1, ind1);
SetIndexBuffer(2, ind2);
SetIndexBuffer(3, ind3);
result = num40 + MathFloor(MathSqrt(num40));
SetIndexDrawBegin(0, result);
SetIndexDrawBegin(1, result);
SetIndexDrawBegin(2, result);
SetIndexDrawBegin(3, result);
IndicatorDigits(Digits + 1);
IndicatorShortName("Oracle Move");
return (0);
}

int start() {
int currentbarscounted = IndicatorCounted();
if (currentbarscounted < 1) {
for (int i = 1; i <= result; i++) ind2[Bars - i] = 0;
for (int i2 = 1; i2 <= num40; i2++) ind3[Bars - i2] = 0;
}
if (currentbarscounted > 0) currentbarscounted--;
int startpoint = Bars - currentbarscounted;

for (int j = 0; j < startpoint; j++) ind3[j] = 2.0 * iMA(NULL, 0, MathFloor(num40 / 2), 0, MODE_LWMA, appliedprice, j) - iMA(NULL, 0, num40, 0, MODE_LWMA, appliedprice, j);

for (int j2 = 0; j2 < startpoint; j2++) ind2[j2] = iMAOnArray(ind3, 0, MathFloor(MathSqrt(num40)), 0, MODE_LWMA, j2 + num);

for (int k = j2; k >= 0; k--) {
if (ind3[k] > ind2[k]) {
ind0[k] = High[k];
ind1[k] = Low[k];
} else {
if (ind3[k] < ind2[k]) {
ind1[k] = High[k];
ind0[k] = Low[k];
}
}
}
return (0);
}


Alle Zeitangaben in WEZ +1. Es ist jetzt 06:38 Uhr.

Powered by vBulletin® Version 3.8.5 (Deutsch)
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.6.1
Powered by vBCMS® 2.7.0 ©2002 - 2024 vbdesigns.de
Copyright ©2009 - 2023 by Expert-Advisor.com - Das Metatrader Forum