Page 242 of 2042

Re: MT4 Indicator requests and ideas

Posted: Mon Nov 06, 2017 6:55 am
by friend4you
sergtradingfx wrote: Mon Nov 06, 2017 6:32 am I tried to recompile three times as i read in other threads, but the dynamic zone-asi smooth mtf indi from earlier in this thread still shows an empty window in different terminals (build 1090), any tips? Thank you
delete some empty lines and compile again in metaeditor as described in mt4 1090 bug thread.

Re: MT4 Indicator requests and ideas

Posted: Mon Nov 06, 2017 7:15 am
by mrtools
eda236 wrote: Mon Nov 06, 2017 4:35 am

Yes sir. Exactly. Color switching according to the zone. Thanks in advance.
Try this one out.

Re: MT4 Indicator requests and ideas

Posted: Mon Nov 06, 2017 8:55 am
by sergtradingfx
friend4you wrote: Mon Nov 06, 2017 6:55 am

delete some empty lines and compile again in metaeditor as described in mt4 1090 bug thread.
I have done as described by Mladen in that thread ("To fix : edit the code - change anything (random change will do) - compile the code - undo the change you did (reverting to the original code) - compile again"). I tried this several times but still the indicator window is empty. I would appreciate further suggestions, thank you very much

Re: MT4 Indicator requests and ideas

Posted: Mon Nov 06, 2017 9:01 am
by speedytina
(edited re-submission)
RE: Moving average cross indicator arrow alerts.

Please see image below for a visual of what I am hoping to accomplish. The indicator "2MA CrossoverWithPrice.mq4" shown below is the indicator in question. Is it possible to code the indicator so that it only shows the most recent arrow? In other words; as each new arrow is formed, the previous arrow disappears. There will therefore only be one arrow on the whole chart.
The SAR indicator below accomplishes a similar thing as an example. You'll see that the SAR indicator only shows the current dot when the indicator is attached to a chart.
I hope my request makes sense. Is it even possible to do? All help would be greatly appreciated.

Re: MT4 Indicator requests and ideas

Posted: Mon Nov 06, 2017 9:07 am
by mrtools
sergtradingfx wrote: Mon Nov 06, 2017 8:55 am

I have done as described by Mladen in that thread ("To fix : edit the code - change anything (random change will do) - compile the code - undo the change you did (reverting to the original code) - compile again"). I tried this several times but still the indicator window is empty. I would appreciate further suggestions, thank you very much
Make sure you have allowl dll imports checked on your platform and you need the dynamic zone dll file in your mq4/libraries folder

Re: MT4 Indicator requests and ideas

Posted: Mon Nov 06, 2017 9:18 am
by sergtradingfx
mrtools wrote: Mon Nov 06, 2017 9:07 am

Make sure you have allowl dll imports checked on your platform and you need the dynamic zone dll file in your mq4/libraries folder
Thank you very much Mr tools!! i was missing the .dll file.

Re: MT4 Indicator requests and ideas

Posted: Mon Nov 06, 2017 6:08 pm
by eda236
mrtools wrote: Mon Nov 06, 2017 7:15 am Try this one out.
Timely help. Thanks.

Re: MT4 Indicator requests and ideas

Posted: Tue Nov 07, 2017 5:14 am
by maxus182
Hi, is it possible to have a Moving Average (EMA) with dots, just like this RSI:

Re: MT4 Indicator requests and ideas

Posted: Tue Nov 07, 2017 6:01 am
by baraozemo
yes you have this, search in google for "MA dots.mq4"

put on chart the standard moving average and with the same values add "ma dots" to your chart.

Re: MT4 Indicator requests and ideas

Posted: Tue Nov 07, 2017 6:12 am
by maxus182
baraozemo wrote: Tue Nov 07, 2017 6:01 am yes you have this, search in google for "MA dots.mq4"

put on chart the standard moving average and with the same values add "ma dots" to your chart.

Thank you very much, I have found it, had to change it to MODE_EMA in code, but this is exactly what I wanted.