SilverTrend_Signal

0
(0)
Nombre:
SilverTrend_Signal [ tu | cn ]
Autor: El escritor (2008.01.08 11:26)
descargado: 4225
Descargar:
SilverTrend_Signal 1
SilverTrend Signal w[1].Alert.mq4 (3.4 Kb) Vista
Autor: Ramdas - Conversion only

Indicator SilverTrend Signal.
SilverTrend_Signal 2
2 comentarios Para publicar un nuevo comentario, por favor acceso o registro

Samlup wrote:
how do i stop this indicator from giving so many audible signals and also so many Alerts in the Alert window....dont mind the arrows coming and going but the alert window and sound is driving me crazy. gracias

This may work. I am not an MQL coder so not sure if it will effect its functionality or if I did this right.
 

Here is the version with NO alert.
 

//+------------------------------------------------------------------+
//| SilverTrend_Signal.mq4 |
//| Ramdas - Conversion only |
//+------------------------------------------------------------------+
#derechos de autor de propiedad "SilverTrend rewritten by CrazyChart"
#enlace de propiedad "http://viac.ru/"
//----
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Aqua
#property indicator_color2 Violet
//---- parámetros de entrada
extern int RISK=3;
extern int CountBars=350;
int SSP=9;
int counter=0;
//---- buffers
double val1[];
double val2[];
//+------------------------------------------------------------------+
//| Función de inicialización de indicador personalizado |
//+------------------------------------------------------------------+
int inicio()
{
string short_name;
//---- indicator line
IndicatorBuffers(2);
SetIndexStyle(0,DRAW_ARROW);
SetIndexArrow(0,233);
SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(1,234);
SetIndexBuffer(0,val1);
SetIndexBuffer(1,val2);
//----
devolver(0);
}
//+------------------------------------------------------------------+
//| SilverTrend_Signal |
//+------------------------------------------------------------------+
inicio int()
{
si (CountBars>=Bars) CountBars=Bars;
SetIndexDrawBegin(0,Bars-CountBars+SSP);
SetIndexDrawBegin(1,Bars-CountBars+SSP);
int i,cambio,counted_bars=IndicatorCounted();
int i1,i2,K;
double Range,AvgRange,smin,smax,SsMax,SsMin,precio;
bool uptrend,viejo;
//----
si(Barras<=SSP+1) devolver(0);
//---- initial zero
si(counted_bars<SSP+1)
{
para(i=1;i<=SSP;i++) val1[CountBars-i]=0.0;
para(i=1;i<=SSP;i++) val2[CountBars-i]=0.0;
}
//----
K=33-RISK;
para(shift=CountBars-SSP; cambio>=0; shift--)
{
Range=0;
AvgRange=0;
para(i1=shift; i1<=shift+SSP; i1++)
{AvgRange=AvgRange+MathAbs(Alto[i1]-Bajo[i1]);
}
Range=AvgRange/(SSP+1);
//----
SsMax=High[cambio]; SsMin=Low[cambio];
para(i2=shift;i2<=shift+SSP-1;i2++)
{
price=High[i2];
si(SsMax<precio) SsMax=price;
price=Low[i2];
si(SsMin>=price) SsMin=price;
}
smin=SsMin+(SsMax-SsMin)*K/100;
smax=SsMax-(SsMax-SsMin)*K/100;
val1[cambio]=0;
val2[cambio]=0;
si (Cerca[cambio]<smin)
{
uptrend=false;
}
si (Cerca[cambio]>smax)
{
uptrend=true;
}
si (tendencia alcista!=old && uptrend==true)
{
val1[cambio]=Low[cambio]-Range*0.5;
counter=0;

{

}
}
si (tendencia alcista!=old && uptrend==false)
{
counter=0;
val2[cambio]=High[cambio]+Range*0.5;

{

}
}
Comentario(cambio);
old=uptrend;
}
devolver(0);
}
//+------------------------------------------------------------------+
 
 

Just open your existing copy and paste this over it and press compile and it will be the same as this one then.
 

'Ring Tone'

18.07.2008 03:04 FXIA

how do i stop this indicator from giving so many audible signals and also so many Alerts in the Alert window....dont mind the arrows coming and going but the alert window and sound is driving me crazy. gracias

¿De cuánta utilidad te ha parecido este contenido?

¡Haz clic en una estrella para puntuarlo!

Promedio de puntuación 0 / 5. Recuento de votos: 0

Hasta ahora, ¡no hay votos!. Sé el primero en puntuar este contenido.

¡Siento que este contenido no te haya sido útil!

¡Déjame mejorar este contenido!

Diez centavos, ¿cómo puedo mejorar este contenido?



Autor: Equipo Wiki de Forex
Somos un equipo de comerciantes de Forex altamente experimentados [2000-2023] que se dedican a vivir la vida en nuestros propios términos. Nuestro principal objetivo es lograr la independencia financiera y la libertad., y hemos buscado la autoeducación y adquirido una amplia experiencia en el mercado Forex como nuestro medio para lograr un estilo de vida autosostenible..