MBKAsctrend3times Ayuda!!

Comparte y analiza indicadores para la plataforma creada por MetaQuotes.

MBKAsctrend3times Ayuda!!

Notapor toms854 » 18 Oct 2010, 16:21

hola

bueno llevo algunos mese en el forex y sigo probando estrategias, algunas buenas otra malas pero no e decidiod aun, la cosa esque encontre un indicador ayer llamado MBKAsctrend3times, quiero agregarle una alarma pero nose como.. e revisado el foro y hay una post en Estrategias de Trading que sale muchas herramientas, alarmas, eas,etc..
revise algunos y descarge tambien lo instale pero sin exito, revise lo parametros pero no son iguales que el MBKAsctrend3times, usted me podrian decir como agregar esa alarma tipica del MT4 a este indicador.

dejo el indicador..

Es gratuito.

saludos

Código: Seleccionar todo
//+------------------------------------------------------------------+
//| MBKAsctrend3times.mq4
//+------------------------------------------------------------------+
#property copyright "MBKAsctrend3times matt kennel"
#property link      "http://www.metatrader.org"

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Blue
#property indicator_color2 Red


//---- input parameters
//
//
// Modified by MBK:  now have three different timescales (bar lengths)
// to combine for final WPR indicator, with further long-term trend indicator.
//
// try on H1 chart with these parameters.
//

extern int RISK=3;
//extern int CountBars=2000;
extern int NumberofAlerts=0;
extern int WPRLength1=9,WPRLength2=33, WPRLength3=77;
extern int LToffset = -5;
extern double w1=1.0, w2=3.0, w3 = 1.0; // relative weights
int counter=0;
//---- buffers
double val1[];
double val2[];

//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
   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);
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| SilverTrend_Signal                                               |
//+------------------------------------------------------------------+
int start() {   
   //if (CountBars>=Bars) CountBars=Bars;
   //SetIndexDrawBegin(0,Bars-CountBars+SSP);
   //SetIndexDrawBegin(1,Bars-CountBars+SSP);
   int i1,i2,K;
   double Range,AvgRange,smin,smax,SsMax,SsMin,price;
   double wprvalue;
   static bool uptrend,old;
   bool flag1, flag2;
   int i,shift,counted_bars=IndicatorCounted();
///----
   
   //if(Bars<=SSP+1) return(0);
//---- initial zero
  //if(counted_bars<SSP+1)
 // {
//      for(i=1;i<=SSP;i++) val2[CountBars-i]=0.0;
//  }
////----

   K=33-RISK;
  // wprlength = 3+RISK*2;
   uptrend=false;
   old = false;
   double sumweights = w1+w2+w3;
   
   w1 /= sumweights;
   w2 /= sumweights;
   w3 /= sumweights;
   
   int SSP = 10;
   for (shift = Bars-SSP; shift>=0; shift--) {

     Range=0;
     AvgRange=0;
     for (i1=shift; i1<=shift+SSP; i1++)
       {AvgRange=AvgRange+MathAbs(High[i1]-Low[i1]);
       }
     Range=AvgRange/(SSP+1);

 
   double wprval1 = (100-MathAbs(iWPR(Symbol(),Period(),WPRLength1,shift)));
   double wprval2 = (100-MathAbs(iWPR(Symbol(),Period(),WPRLength2,shift)));
   double wprval3 = (100-MathAbs(iWPR(Symbol(),Period(),WPRLength3,shift)));
   
   wprvalue = w1*wprval1 + w2*wprval2 + w3*wprval3;
   
  //  MathPow(wprval1*wprval2*wprval3,1.0/3.0);

   double wprlong = wprval3;
     if ((wprvalue < 33-RISK) && (wprlong < 50-LToffset)) {
      uptrend = false;
   }
   
   if ((wprvalue > 67+RISK) && (wprlong >= 50+LToffset)) {
      uptrend = true;
   }
   
   if (uptrend!=old && uptrend==true) {
      val1[shift]=Low[shift]-Range*0.8; // lower range
      counter=0;
      if (shift==0 && counter<=NumberofAlerts) {
         // Alert("MBKAsctrend ",Period()," ",Symbol()," BUY");
         counter=counter+1;
      }
   }
   
   if (uptrend!=old && uptrend==false) {
      counter=0;
      val2[shift]=High[shift]+Range*0.8;
      if (shift==0 && counter<=NumberofAlerts) {
        // Alert("Silver Trend ",Period()," ",Symbol()," SELL");
         counter=counter+1;
         }
   }
   Comment(shift);
   old=uptrend;

   }
   return(0);
}
//+------------------------------------------------------------------+
Adjuntos
MBKAsctrend3times.ex4
(4.12 KiB) 627 veces
toms854
 
Mensajes: 14
Registrado: 08 Jun 2010, 10:17
Karma: 0

Re: MBKAsctrend3times Ayuda!!

Notapor toms854 » 19 Oct 2010, 12:49

alguien que me ayude pliz
toms854
 
Mensajes: 14
Registrado: 08 Jun 2010, 10:17
Karma: 0

Re: MBKAsctrend3times Ayuda!!

Notapor tonyswl » 09 Nov 2010, 18:12

HOLA:
Yo tambien estoy intersado en ver si alguien sabe como colocarle alarma a este indicador. Es muy buen indicador, lo veo muy prudente.

Anda bien, y las señales generalmente son acertadas, y lo mejor de todo es que es !GRATUITO!!.-

Aca lo pueden bajar: http://codebase.mql4.com/1936

Lo probe en varios timeframe y es muy bueno.

Busque algun manual o mas informacion pero no encontre. si alguien puede aportar algo mas desde ya gracias.-

Tony
.
tonyswl
 
Mensajes: 34
Registrado: 01 Jun 2010, 19:32
Ubicación: Ciudad de buenos Aires, Argentina
Karma: 0

Re: MBKAsctrend3times Ayuda!!

Notapor chaveznqoos » 12 Nov 2010, 12:17

tonyswl escribió:HOLA:
Yo tambien estoy intersado en ver si alguien sabe como colocarle alarma a este indicador. Es muy buen indicador, lo veo muy prudente.

Anda bien, y las señales generalmente son acertadas, y lo mejor de todo es que es !GRATUITO!!.-

Aca lo pueden bajar: http://codebase.mql4.com/1936

Lo probe en varios timeframe y es muy bueno.

Busque algun manual o mas informacion pero no encontre. si alguien puede aportar algo mas desde ya gracias.-

Tony
.

Hola;
¿repinta.? :roll:
Un saludo
chaveznqoos
 
Mensajes: 182
Registrado: 06 Ago 2009, 00:08
Karma: 0

Re: MBKAsctrend3times Ayuda!!

Notapor pachi052003 » 08 Ago 2011, 01:18

da demasiadas falsas senales
Avatar de Usuario
pachi052003
 
Mensajes: 314
Registrado: 02 Jun 2011, 21:06
Karma: 0


Volver a Indicadores

¿Quién está conectado?

Usuarios navegando por este Foro: No hay usuarios registrados visitando el Foro y 0 invitados

cron