Multi Timeframe Indicators - page 1128

 
mladen:

Try it out now


thank you BTW does it repaint?
 
gouyy:
thank you BTW does it repaint?
No, it doesn't
 

Dear Mladen,


Could you please help me to change this indicator to MTF version

Thank you for your help

Files:
Index_v7L.mq4  20 kb
 
mladen:
The answer for that would be the same as my previous post : pleas post the original (non-decompiled) source so that it can be worked on

mladen,

Can you at least edit this indicator of Jack such that:

1. Only the Red, Green, Yellow and Grey lines are kept on the chart.

2. Remove/disable the whole target system such as the Setup yellow circles, Entry Green circles.

3. Remove Target Hit and Stop Hit lines.

4. Disable the whole Last Signal Objectives details displayed on the screen.

 

Basically, I only want the  Red-Green-Yellow and Grey lines maintained on the chart rest everything disabled/removed.

 

This would be of great help...

 

Thank You!!! 

 
sandyk82:

mladen,

Can you at least edit this indicator of Jack such that:

1. Only the Red, Green, Yellow and Grey lines are kept on the chart.

2. Remove/disable the whole target system such as the Setup yellow circles, Entry Green circles.

3. Remove Target Hit and Stop Hit lines.

4. Disable the whole Last Signal Objectives details displayed on the screen.

 

Basically, I only want the  Red-Green-Yellow and Grey lines maintained on the chart rest everything disabled/removed.

 

This would be of great help...

 

Thank You!!! 

Sorry, the answer for that is the same as so many time before, as I told a lot of times : I do not want to do to others that I would not like the others to do to me. Hence I do not want to do anything with decompiled code
 

hi guys,


i found this indicator in this forum. May you add mtf on it please ? thank yu very much :)

 
DRADIS33:

hi guys,


i found this indicator in this forum. May you add mtf on it please ? thank yu very much :)

Try this one.

 

Dear All...  I hope you are very well...

I learn to programing and did a simple EA to determine the low value in the 3 last barr and open a buy order... but i have a problem, did not put the order... Anybody can help me? The program get the low price and showed the Alert, but do not put the buy order...


Thanks in advanced...

//--------------------------------------------------------------------
// NewBar_jeaa_Rev 2.mq4
//--------------------------------------------------------------------
#property copyright "Jeaa"

extern int GV_CantidadBarras=3; // Cantidad de barras
extern int digits=5;
//--------------------------------------------------------------------
extern double Lots               = 0.01;
extern double StopLoss           = 100;
extern double TakeProfit         = 100;
extern int    Slippage           = 3;


//--------------------------------------------------------------------
bool GV_Flag_NuevaBarra=false; // Flag de una nueva barra
//======================================================================

int start() // Special funct. start()
{
double Precio; // variable que registra el precio minimo y Máximo
//--------------------------------------------------------------------
Fun_NuevaBarra(); // Funcion call
if (GV_Flag_NuevaBarra==false) // Si no hay nueva barra..
return; // ..return
//=========================================================================

//int IndMax =ArrayMaximum(High,GV_CantidadBarras,1);// Indice de la barra del precio maximo
int IndMin =ArrayMinimum(Low, GV_CantidadBarras,1);// Indice de la barra del precio minimo

Precio=Low[IndMin];

int ticket=OrderSend(Symbol(),OP_BUY,Lots,Precio,Slippage,StopLoss,TakeProfit,"My orderrr",16384,0,Blue);

Alert(Symbol(),": Barras= ",GV_CantidadBarras, // Mostrar mensaje de precios max y min
", Min= ",DoubleToString(Precio,digits));

return;
    }

void Fun_NuevaBarra() // Descripción de la Funcion que detecta ..
{ // .. una nueva barra
static datetime NewTime=0; // variable que almacena fecha y hora
GV_Flag_NuevaBarra=false; // Inicializa nueva barra a falso (no hay nueva barra)
if(NewTime!=Time[0]) // Si existe nueva barra el dato es distinto de cero..
{
NewTime=Time[0]; //.. y en ese caso se registra el hora y fecha de la..
GV_Flag_NuevaBarra=true; //nueva barra y se activa el flag que señaliza la…
//existencia de una nueva barra
}
}

 
Jeaa:

Dear All...  I hope you are very well...

I learn to programing and did a simple EA to determine the low value in the 3 last barr and open a buy order... but i have a problem, did not put the order... Anybody can help me? The program get the low price and showed the Alert, but do not put the buy order...


Thanks in advanced...

//--------------------------------------------------------------------
// NewBar_jeaa_Rev 2.mq4
//--------------------------------------------------------------------
#property copyright "Jeaa"

extern int GV_CantidadBarras=3; // Cantidad de barras
extern int digits=5;
//--------------------------------------------------------------------
extern double Lots               = 0.01;
extern double StopLoss           = 100;
extern double TakeProfit         = 100;
extern int    Slippage           = 3;


//--------------------------------------------------------------------
bool GV_Flag_NuevaBarra=false; // Flag de una nueva barra
//======================================================================

int start() // Special funct. start()
{
double Precio; // variable que registra el precio minimo y Máximo
//--------------------------------------------------------------------
Fun_NuevaBarra(); // Funcion call
if (GV_Flag_NuevaBarra==false) // Si no hay nueva barra..
return; // ..return
//=========================================================================

//int IndMax =ArrayMaximum(High,GV_CantidadBarras,1);// Indice de la barra del precio maximo
int IndMin =ArrayMinimum(Low, GV_CantidadBarras,1);// Indice de la barra del precio minimo

Precio=Low[IndMin];

int ticket=OrderSend(Symbol(),OP_BUY,Lots,Precio,Slippage,StopLoss,TakeProfit,"My orderrr",16384,0,Blue);

Alert(Symbol(),": Barras= ",GV_CantidadBarras, // Mostrar mensaje de precios max y min
", Min= ",DoubleToString(Precio,digits));

return;
    }

void Fun_NuevaBarra() // Descripción de la Funcion que detecta ..
{ // .. una nueva barra
static datetime NewTime=0; // variable que almacena fecha y hora
GV_Flag_NuevaBarra=false; // Inicializa nueva barra a falso (no hay nueva barra)
if(NewTime!=Time[0]) // Si existe nueva barra el dato es distinto de cero..
{
NewTime=Time[0]; //.. y en ese caso se registra el hora y fecha de la..
GV_Flag_NuevaBarra=true; //nueva barra y se activa el flag que señaliza la…
//existencia de una nueva barra
}
}

What error do you get in the experts or the journal tab of the terminal?
 
mladen:
What error do you get in the experts or the journal tab of the terminal?

Hi mladen... Thanks for your reply...

2016.09.06 11:42:06.700 NewBar_jeaa_Rev 2 USDJPY,M1: Alert: USDJPY: Barras= 3, Min= 102.11600
2016.09.06 11:41:36.561 NewBar_jeaa_Rev 2 USDJPY,M1: Alert: USDJPY: Barras= 3, Min= 102.11600
2016.09.06 11:41:36.561 NewBar_jeaa_Rev 2 USDJPY,M1: trade operations not allowed by settings
2016.09.06 11:41:36.396 NewBar_jeaa_Rev 2 USDJPY,M1: initialized
2016.09.06 11:41:36.385 NewBar_jeaa_Rev 2 USDJPY,M1 inputs: GV_CantidadBarras=3; digits=5; Lots=0.01; StopLoss=100.0; TakeProfit=100.0; Slippage=3;
2016.09.06 11:41:35.080 Expert NewBar_jeaa_Rev 2 USDJPY,M1: loaded successfully


2016.09.06 12:57:08.587 '502630': order buy 0.01 USDJPY opening at market sl: 50.000 tp: 50.000 failed [Invalid S/L or T/P]
2016.09.06 12:57:08.268 '502630': order buy market 0.01 USDJPY sl: 50.000 tp: 50.000
2016.09.06 12:56:07.224 '502630': order buy 0.01 USDJPY opening at market sl: 50.000 tp: 50.000 failed [Invalid S/L or T/P]
2016.09.06 12:56:06.921 '502630': order buy market 0.01 USDJPY sl: 50.000 tp: 50.000
2016.09.06 12:56:04.221 Automated trading enabled

Reason: