Page 82 of 434
Re: MT4 Indicators with alerts/signals
Posted: Mon Jul 10, 2017 12:35 pm
by mrtools
samuelkanu wrote: Mon Jul 10, 2017 12:18 pm
Thanks mrtools. Please as per my second request please where can I get an rsi indicator with alert for cross of level and alert option of on open or closed candle. Thanks for all the help.
Seem to remember there being some in this thread
https://www.forex-station.com/viewtopic ... &t=8413428
Re: MT4 Indicators with alerts/signals
Posted: Mon Jul 10, 2017 1:18 pm
by Cladi39
mladen wrote: Sun Jul 09, 2017 3:55 pm
Why should it now work?
As far as I see, the indicator is assigning value to both buffers, there is no reason that the iCustom() should not work unless it is wrongly called
Soo you can tell me how call the put buffer beacouse dont work equal to buy buffer. Thanks mladen.
Re: MT4 Indicators with alerts/signals
Posted: Mon Jul 10, 2017 3:02 pm
by mladen
Cladi39 wrote: Mon Jul 10, 2017 1:18 pm
Soo you can tell me how call the put buffer beacouse dont work equal to buy buffer. Thanks mladen.
Show your code
Re: MT4 Indicators with alerts/signals
Posted: Mon Jul 10, 2017 9:51 pm
by TEAMTRADER
Could a signal and alert be added to this 4 timeframe NonLag indicator please?
To signal and alert when all the timeframes agree as in the illustration with vertical lines manually entered.
It is a brilliant confirmer.
Regards
TEAMTRADER
Re: MT4 Indicators with alerts/signals
Posted: Tue Jul 11, 2017 9:03 am
by mntiwana
TEAMTRADER wrote: Mon Jul 10, 2017 9:51 pm
Could a signal and alert be added to this 4 timeframe NonLag indicator please?
To signal and alert when all the timeframes agree as in the illustration with vertical lines manually entered.
It is a brilliant confirmer.
Regards
TEAMTRADER
It is originally "4 time frame NonLagMa nmc " - no copy version was posted by MLADEN
any way here is upgraded version by MLADEN with alerts - alerts level and some more features - and it is using upgraded ver indicator "Nonlag ma nrp & mtf + alerts nmc" indicator for to work
posted here
https://www.forex-station.com/viewtopic ... 1295359638
Re: MT4 Indicators with alerts/signals
Posted: Tue Jul 11, 2017 10:29 am
by Cladi39
mladen wrote: Mon Jul 10, 2017 3:02 pm
Show your code
double EI(int i)
{
double up = iCustom(NULL,0,"engulfing-indicator",0,i+1)!=0;
double dn = iCustom(NULL,0,"engulfing-indicator",1,i+1)!=0;
if(up)
{
return(1);
}
if(dn)
{
return(-1);
}
return(0);
}
bool Arrowup(int i)
{
bool up=false;
up = EI(i)==1;
if(up)
{
return true;
}
return false;
}
bool Arrowdn(int i)
{
bool dn=false;
dn = EI(i)==-1;
if(dn)
{
return true;
}
return false;
}
thanks mladen.
Re: MT4 Indicators with alerts/signals
Posted: Tue Jul 11, 2017 4:21 pm
by mladen
Cladi39 wrote: Tue Jul 11, 2017 10:29 am
double EI(int i)
{
double up = iCustom(NULL,0,"engulfing-indicator",0,i+1)!=0;
double dn = iCustom(NULL,0,"engulfing-indicator",1,i+1)!=0;
if(up)
{
return(1);
}
if(dn)
{
return(-1);
}
return(0);
}
bool Arrowup(int i)
{
bool up=false;
up = EI(i)==1;
if(up)
{
return true;
}
return false;
}
bool Arrowdn(int i)
{
bool dn=false;
dn = EI(i)==-1;
if(dn)
{
return true;
}
return false;
}
thanks mladen.
In mql a boolean expression like
if(dn)
means : "if dn is different from zero"
Use some other comparison - ie : (if dn==-1) for example
Re: MT4 Indicators with alerts/signals
Posted: Tue Jul 11, 2017 6:22 pm
by TEAMTRADER
mntiwana wrote: Tue Jul 11, 2017 9:03 am
It is originally "4 time frame NonLagMa nmc " - no copy version was posted by MLADEN
any way here is upgraded version by MLADEN with alerts - alerts level and some more features - and it is using upgraded ver indicator "Nonlag ma nrp & mtf + alerts nmc" indicator for to work
posted here
https://www.forex-station.com/viewtopic ... 1295359638
It is the same indicator - it is just when I was uploading to Forex-station that it got renamed (for some reason unknown by me).
I had not realised that it was a repainting indicator - I have not seen a change in colour whilst I have been using it.
Thanks
TEAMTRADER
Re: MT4 Indicators with alerts/signals
Posted: Tue Jul 11, 2017 6:59 pm
by mladen
TEAMTRADER wrote: Tue Jul 11, 2017 6:22 pm
It is the same indicator - it is just when I was uploading to Forex-station that it got renamed (for some reason unknown by me).
I had not realised that it was a repainting indicator - I have not seen a change in colour whilst I have been using it.
Thanks
TEAMTRADER
It is not repainting
As it has been a long time ago an repeatedly over and over : multi time frame updating of higher time frame current (still opened) bars is not repainting and it never was repainting. If you avoid updating that, then you get repainting
Re: MT4 Indicators with alerts/signals
Posted: Wed Jul 12, 2017 1:36 am
by Barons1
pacois wrote: Wed Jul 05, 2017 3:36 am
Ciao,prova se ti รจ utile.
Ciao Pacois, ti ringrazio molto per il tuo interessamento. Mi sono preso qualche giorno per valutare l'indicatore che lavora perfettamente. Grazie!
Unico appunto: si potrebbe ricevere un solo segnale per candela? Lavorando con timeframe bassi suona molte volte..