bonjour a tous, pourriez vous s'il vous plait m'aider à stabiliser mon alertes sonore et visuel!? j'ai écrit un petit code qui me donne des signaux de trading mais a chaque tic le code emet un signal sonore(tres embetant). aidez moi sil vous plait à le rendre stable! Merci
Code
//+------------------------------------------------------------------+
//| test0.mq4 |
//| Copyright 2014, MetaQuotes Software Corp. |
//| http://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2014, MetaQuotes Software Corp."
#property link "http://www.mql5.com"
#property version "1.00"
#property strict
extern bool SoundAlert = TRUE;
extern bool EmailAlert = FALSE;
double ema21_M15;
double ema50_M15;
double macd_H1;
double macd_signal_H1;
//+------------------------------------------------------------------+
//| indicator program start function |
//+------------------------------------------------------------------+
int start()
{
//---
//+------------------------------------------------------------------+
//| acquisition des indicateurs
//|------------------------------------------------------------------+
ema21_M15=iMA(NULL, PERIOD_M15, 21, 0, MODE_EMA, PRICE_CLOSE, 0);
ema50_M15=iMA(NULL, PERIOD_M15, 50, 0, MODE_EMA, PRICE_CLOSE, 0);
macd_H1=iMACD(NULL,PERIOD_H1,5,35,5,PRICE_CLOSE,MODE_MAIN,0);
macd_signal_H1=iMACD(NULL,PERIOD_H1,5,35,5,PRICE_CLOSE,MODE_SIGNAL,0);
//---- vente
if (ema21_M15<ema50_M15 && macd_H1<macd_signal_H1 )
{
if( SoundAlert ) Alert (Symbol()," M",PERIOD_H1, " signal d'entrée de vente ");
}
//---- achat
if(ema21_M15>ema50_M15 && macd_H1>macd_signal_H1 )
{
if( SoundAlert ) Alert (Symbol()," M",PERIOD_H1, " signal d'entrée d'achat ");
}
return (0);
}
//+------------------------------------------------------------------+
Modifié le 2014-08-11 15:55:59 par
AliX
: [code] [/code]