Está perdiendo oportunidades comerciales:
- Aplicaciones de trading gratuitas
- 8 000+ señales para copiar
- Noticias económicas para analizar los mercados financieros
Registro
Entrada
Usted acepta la política del sitio web y las condiciones de uso
Si no tiene cuenta de usuario, regístrese
¿Tiene indicador para las velas azules y rojas?
¿Tiene indicador para las velas azules y rojas?
Hola chicos, he tenido poca respuesta a mi pregunta anterior, y pensé en añadir una captura de pantalla de algunos de los disparos largos y cortos que se activaría en el Eur / USD con la estrategia que he descrito. ¿Es este un sitio web popular para el comercio de divisas, o hay otros sitios que tal vez debería estar haciendo mis consultas? Pensé que este sería el mejor sitio teniendo en cuenta que el indicador de media móvil sin retardo MTF fue desarrollado aquí por Igorad. Por desgracia, soy demasiado nuevo en este sitio para poder contactar con Igorad directamente. Por lo tanto, he adjuntado una captura de pantalla que muestra dónde se produciría un disparo largo y corto si se cumplen las condiciones que he mencionado anteriormente. Las líneas verticales (rojo = corto y verde = largo) indican cuando tres (línea fina) o cuatro (línea gruesa) líneas MTF Non lag MA comienzan a moverse en la misma dirección. ¡¡Espero que la captura de pantalla añadida pueda mostrar el potencial de esta configuración!!
que es este indicador plz
gracias
Este no lag toros osos multi timeframe con alertas, no podía decidir si es útil o no, tal vez todos ustedes pueden decidir.
Hola mrtools,
Encuentro este indicador muy útil y estoy codificando ea's yo mismo. así que mi pregunta: ¿Es posible para usted para extraer la señal de toros y osos para mí? Quiero implementarlo en mi ea y dar una prueba.
Si quieres probar mi EA también te enviaré un enlace a través de pm.
Saludos,
Banzak
Hola mrtools,
Encuentro este indicador muy útil y estoy codificando ea's yo mismo. así que mi pregunta: ¿Es posible que extraiga la señal de toros y osos para mí? Quiero implementarlo en mi ea y dar una prueba.
Si quieres probar mi EA también te enviaré un enlace a través de pm.
Saludos,
BanzakHola Banzak,
Espero haber entendido bien, he quitado el mtf y las alertas
Hola Banzak, espero haber entendido bien, he quitado el mtf y las alertas
Hola mrtools,
Quiero construir este indicador directamente en mi ea, así que mi pregunta es si tomo
nlm = iNonLagMa(iMA(NULL,0,1,0,MODE_SMA,BullBearPrice,i),BullBearPeriod,i,0);
bears = nlm - Low;
bulls = High - nlm;
trend = trend;
if (bulls > bears) trend = 1;
if (bulls < bears) trend =-1;[/CODE]
and adapt it only for the actual value - this only 50%, cause in the
-function there is a lot of stuff I didn't really unterstand at the moment..
The code above it's a normal calculation for bears & bulls. It's look in my ea like this:
[CODE]//+------------------------------------------------------------------+
// Function Bears_Get() - Indicator |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Input parameters: |
//| symbol - Symbol. |
//| timeframe - Timeframe. |
//| BearsPeriod - Period for calculation |
//| Shift - Index of the value taken from the indicator buffer. |
//+------------------------------------------------------------------+
double Bears_Get(string symbol,int timeframe,int BearsPeriod,int Shift)
{
//+-- Definition of Variables
double Temp, Bears;
//+-- End of Definition
//+-- Function-Body
if (symbol=="" || symbol=="0") symbol=Symbol();
Temp = iMA(symbol,timeframe,BearsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);
Bears = iLow(symbol,timeframe,Shift)-Temp;
//+-- End of Body
//+-- Function-Result
return(Bears);
//+-- End of Result
}
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
// Function Bulls_Get() - Indicator |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Input parameters: |
//| symbol - Symbol. |
//| timeframe - Timeframe. |
//| BullsPeriod - Period for calculation |
//| Shift - Index of the value taken from the indicator buffer. |
//+------------------------------------------------------------------+
double Bulls_Get(string symbol,int timeframe,int BullsPeriod,int Shift)
{
//+-- Definition of Variables
double Temp, Bulls;
//+-- End of Definition
//+-- Function-Body
if (symbol=="" || symbol=="0") symbol=Symbol();
Temp = iMA(symbol,timeframe,BullsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);
Bulls = iHigh(symbol,timeframe,Shift)-Temp;
//+-- End of Body
//+-- Function-Result
return(Bulls);
//+-- End of Result
}
//+------------------------------------------------------------------+Lo que necesito es la extensión con el Nonlag...
Saludos,
Banzak
Hola mrtools,
Quiero construir este indicador directamente en mi ea, así que mi pregunta es si tomo
nlm = iNonLagMa(iMA(NULL,0,1,0,MODE_SMA,BullBearPrice,i),BullBearPeriod,i,0);
bears = nlm - Low;
bulls = High - nlm;
trend = trend;
if (bulls > bears) trend = 1;
if (bulls < bears) trend =-1;[/CODE]
and adapt it only for the actual value - this only 50%, cause in the
-function there is a lot of stuff I didn't really unterstand at the moment..
The code above it's a normal calculation for bears & bulls. It's look in my ea like this:
[CODE]//+------------------------------------------------------------------+
// Function Bears_Get() - Indicator |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Input parameters: |
//| symbol - Symbol. |
//| timeframe - Timeframe. |
//| BearsPeriod - Period for calculation |
//| Shift - Index of the value taken from the indicator buffer. |
//+------------------------------------------------------------------+
double Bears_Get(string symbol,int timeframe,int BearsPeriod,int Shift)
{
//+-- Definition of Variables
double Temp, Bears;
//+-- End of Definition
//+-- Function-Body
if (symbol=="" || symbol=="0") symbol=Symbol();
Temp = iMA(symbol,timeframe,BearsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);
Bears = iLow(symbol,timeframe,Shift)-Temp;
//+-- End of Body
//+-- Function-Result
return(Bears);
//+-- End of Result
}
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
// Function Bulls_Get() - Indicator |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Input parameters: |
//| symbol - Symbol. |
//| timeframe - Timeframe. |
//| BullsPeriod - Period for calculation |
//| Shift - Index of the value taken from the indicator buffer. |
//+------------------------------------------------------------------+
double Bulls_Get(string symbol,int timeframe,int BullsPeriod,int Shift)
{
//+-- Definition of Variables
double Temp, Bulls;
//+-- End of Definition
//+-- Function-Body
if (symbol=="" || symbol=="0") symbol=Symbol();
Temp = iMA(symbol,timeframe,BullsPeriod,0,MODE_EMA,PRICE_CLOSE,Shift);
Bulls = iHigh(symbol,timeframe,Shift)-Temp;
//+-- End of Body
//+-- Function-Result
return(Bulls);
//+-- End of Result
}
//+------------------------------------------------------------------+Lo que necesito es la extensión con el Nonlag...
Saludos,
BanzakBanzak, creo que lo sé pero no estoy lo suficientemente seguro de ello como para dar el consejo, y cómo funcionaría en un Ea, para mí es mucho más fácil todo el camino alrededor de sólo llamar el indicador, sólo con el búfer de tendencia >< cero.
Banzak, creo que lo sé pero no estoy lo suficientemente seguro de ello como para dar el consejo, y cómo funcionaría en un Ea, para mí es mucho más fácil todo el camino alrededor de sólo llamar el indicador, sólo usando el búfer de tendencia >< cero.
hola señor,
por favor ayúdeme quiero flecha en este indicador cuando la línea azul y amarilla se cruzan
Por favor, puede alguien añadir el método / modo en el histo no lag
he hecho un intento rápido pero debe faltar algo en alguna parte ya que no cambia nada
Gracias a todos
nonlag_ma_histo_mtfalerts.mq4
Añadido el modo (creo)
tenía el modo en el orden, no hace mucha diferencia, pero siempre vale la pena intentarlo
nonlag_ma_histo_mtfalerts.1.mq4
Gracias Sr. Tools,
solo trato de encontrar el último indi para mi sistema
entonces voy a tratar de aprender a codificar