Page 338 of 429

Re: MT4 Indicators with alerts/signals

Posted: Wed Nov 11, 2020 8:07 am
by pipsquirrel
mrtools wrote: Wed Nov 11, 2020 7:12 am

Don't know, but do know the Ma Cross OC is a repainter. Check out the fasterMAafter and the slowerMAafter(i-1) both are trying to look into the future.

Code: Select all

fasterMAnow = iMA(NULL, 0, FasterMA, 0, FasterMode, PRICE_CLOSE, i);
      fasterMAprevious = iMA(NULL, 0, FasterMA, 0, FasterMode, PRICE_CLOSE, i+1);
      fasterMAafter = iMA(NULL, 0, FasterMA, 0, FasterMode, PRICE_CLOSE, i-1);

      slowerMAnow = iMA(NULL, 0, SlowerMA, 0, SlowerMode, PRICE_OPEN, i);
      slowerMAprevious = iMA(NULL, 0, SlowerMA, 0, SlowerMode, PRICE_OPEN, i+1);
      slowerMAafter = iMA(NULL, 0, SlowerMA, 0, SlowerMode, PRICE_OPEN, i-1);
oh ic
again big appreciations for your kindness and taking time
so this was the reason actually/repainter
greetings

Re: MT4 Indicators with alerts/signals

Posted: Mon Nov 16, 2020 4:59 pm
by branco
hello sir,

could you please make alert (sound,email) + arrow.
rules:
-Arrow at first candle(only) every break outside MA band, closed candle.
-alert sound choice current or closed candle at first candle(only) every break outside MA band.
many thanks sir

Re: MT4 Indicators with alerts/signals

Posted: Tue Nov 17, 2020 4:37 am
by mikver
Hello, you can make this indicator only signal at the close of the candle.
Thank you

Re: MT4 Indicators with alerts/signals

Posted: Wed Nov 18, 2020 12:41 am
by naluvs01
Hi MrTools and coders respectively,

Could you please add alerts once the bars cross the MA and possibly add different MA options (SMA, EMA, SMMA, LMA).

Thank you in advance for your consideration!!!!!!

P.S. By the way, if the MA options are too much, the alerts only will be awesome!!!!

Re: MT4 Indicators with alerts/signals

Posted: Wed Nov 18, 2020 1:16 am
by hoangfx1611
hello everyone.
please help me make a stochastic with arrow and alert when it have a crossing only in 0-20 and 80-100 zone. I found some stochastic in this forum but they show arrow and alert all the time it have a crossing ( or maybe my mistake )
I just need adding them to original stochastic in the Mt4.
Thank you for your help. best Regard

Re: MT4 Indicators with alerts/signals

Posted: Thu Nov 19, 2020 12:34 am
by nyol
mrtools wrote: Thu Feb 20, 2020 1:17 pm

Done.
Could someone point out something like or similar to MT5?

Re: MT4 Indicators with alerts/signals

Posted: Thu Nov 19, 2020 1:49 am
by camisa
hello mrtools

Is it possible to add audio alerts on current bar to the attached indicator, please?

Re: MT4 Indicators with alerts/signals

Posted: Thu Nov 19, 2020 2:02 am
by Cladi39
Dear Mrtools this indicator work well on forex but dont give down signal (blue dots) on stock pairs. Can be fixed? Thanks soo much.

Re: MT4 Indicators with alerts/signals

Posted: Thu Nov 19, 2020 3:40 am
by mrtools
camisa wrote: Thu Nov 19, 2020 1:49 am hello mrtools

Is it possible to add audio alerts on current bar to the attached indicator, please?
Check here viewtopic.php?p=1295410246#p1295410246

Re: MT4 Indicators with alerts/signals

Posted: Thu Nov 19, 2020 3:42 am
by mrtools
Cladi39 wrote: Thu Nov 19, 2020 2:02 am Dear Mrtools this indicator work well on forex but dont give down signal (blue dots) on stock pairs. Can be fixed? Thanks soo much.
Do you have "Volumen Reversal V1"? Need it to check it out.