Page 201 of 429

Re: MT4 Indicators with alerts/signals

Posted: Wed Oct 24, 2018 11:57 pm
by roshtrader
mrtools wrote: Wed Oct 24, 2018 11:12 pm

Added the arrow and alert options.



Respected Senior Member " mrtools " , I Thank you again and again.

A Big Thanks to this Helpful forum.

Re: MT4 Indicators with alerts/signals

Posted: Thu Oct 25, 2018 1:56 am
by simke
hello mrtools
I need alert (alert when the arrow appears) for this indicator.
sound alert
popup alert
email alert
notify alert

thanks in advance

Re: MT4 Indicators with alerts/signals

Posted: Thu Oct 25, 2018 2:54 am
by FBI
I am not 100% sure, but I think this a non-repainter, alerts would be nice to confirm that, message and sound.
Thank You.

Re: MT4 Indicators with alerts/signals

Posted: Thu Oct 25, 2018 4:10 am
by Cladi39
FBI wrote: Thu Oct 25, 2018 2:54 am I am not 100% sure, but I think this a non-repainter, alerts would be nice to confirm that, message and sound.
Thank You.

MA_BBands_v3.3.mq4

GBPUSDM1.png
Thanks for this indicator, can anybody confirm if the arrows repaint?

Re: MT4 Indicators with alerts/signals

Posted: Thu Oct 25, 2018 4:53 am
by mntiwana
FBI wrote: Thu Oct 25, 2018 2:54 am I am not 100% sure, but I think this a non-repainter, alerts would be nice to confirm that, message and sound.
Thank You.

MA_BBands_v3.3.mq4

GBPUSDM1.png
Aside from the comments of a poster
Though i am zero in coding matters but i remember,once expert explained it is using "minus shift values"

double MAUP1 = iMA(NULL,0,MAPeriod,-25,MODE_SMA,PRICE_HIGH,i);
double BB_UP = iBands(NULL,0,BB_Period,Bands_Deviations,0,PRICE_HIGH,MODE_UPPER,i+6);
double MA_HIGH = iMA(NULL,0,HiLow_Find_Period,0,MODE_LWMA,PRICE_HIGH,i);

double MADN1 = iMA(NULL,0,MAPeriod,-25,MODE_SMA,PRICE_LOW,i);
double BB_DN = iBands(NULL,0,BB_Period,Bands_Deviations,0,PRICE_LOW ,MODE_LOWER,i+6);
double MA_LOW = iMA(NULL,0,HiLow_Find_Period,0,MODE_LWMA,PRICE_LOW,i);

double SEC_UP = iMA(NULL,0,9,-7,MODE_SMA,PRICE_HIGH,i);
double SEC_DN = iMA(NULL,0,9,-7,MODE_SMA,PRICE_LOW,i);

Re: MT4 Indicators with alerts/signals

Posted: Thu Oct 25, 2018 4:55 am
by reachme
Cladi39 wrote: Thu Oct 25, 2018 4:10 am
Thanks for this indicator, can anybody confirm if the arrows repaint?
It's a repainting indicator!

Re: MT4 Indicators with alerts/signals

Posted: Thu Oct 25, 2018 5:19 am
by FBI
It is not like heavy repainter if it repaints, I haven`t seen yet any...and here is last signal with trend and exit when price goes outside lower band, 30 pips.

Re: MT4 Indicators with alerts/signals

Posted: Thu Oct 25, 2018 5:29 am
by FBI
mntiwana wrote: Thu Oct 25, 2018 4:53 am
Aside from the comments of a poster
Though i am zero in coding matters but i remember,once expert explained it is using "minus shift values"

double MAUP1 = iMA(NULL,0,MAPeriod,-25,MODE_SMA,PRICE_HIGH,i);
double BB_UP = iBands(NULL,0,BB_Period,Bands_Deviations,0,PRICE_HIGH,MODE_UPPER,i+6);
double MA_HIGH = iMA(NULL,0,HiLow_Find_Period,0,MODE_LWMA,PRICE_HIGH,i);

double MADN1 = iMA(NULL,0,MAPeriod,-25,MODE_SMA,PRICE_LOW,i);
double BB_DN = iBands(NULL,0,BB_Period,Bands_Deviations,0,PRICE_LOW ,MODE_LOWER,i+6);
double MA_LOW = iMA(NULL,0,HiLow_Find_Period,0,MODE_LWMA,PRICE_LOW,i);

double SEC_UP = iMA(NULL,0,9,-7,MODE_SMA,PRICE_HIGH,i);
double SEC_DN = iMA(NULL,0,9,-7,MODE_SMA,PRICE_LOW,i);
Yeah, I don`t know too, and looks like those bands does not repaint or what you think ?

Re: MT4 Indicators with alerts/signals

Posted: Thu Oct 25, 2018 5:30 am
by reachme
FBI wrote: Thu Oct 25, 2018 5:19 am It is not like heavy repainter if it repaints, I haven`t seen yet any...and here is last signal with trend and exit when price goes outside lower band, 30 pips.

GBPUSDM1.png
There are only 2 statements. Repaint or no Repaint so there is no in between. As you know well you are seeing this because it's a nice downtrend but what if it's not.

Re: MT4 Indicators with alerts/signals

Posted: Thu Oct 25, 2018 5:32 am
by FBI
reachme wrote: Thu Oct 25, 2018 5:30 am

There are only 2 statements. Repaint or no Repaint so there is no in between. As you know well you are seeing this because it's a nice downtrend but what if it's not.
So you know for sure,that is good.

Does those white bands repaint`?