delete some empty lines and compile again in metaeditor as described in mt4 1090 bug thread.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
Re: MT4 Indicator requests and ideas
2412Try this one out.eda236 wrote: Mon Nov 06, 2017 4:35 am
Yes sir. Exactly. Color switching according to the zone. Thanks in advance.
Re: MT4 Indicator requests and ideas
2413I 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 muchfriend4you wrote: Mon Nov 06, 2017 6:55 am
delete some empty lines and compile again in metaeditor as described in mt4 1090 bug thread.
Re: MT4 Indicator requests and ideas
2414(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: 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.
Cluttered charts are visual diarrhea. Whats on your charts?
Re: MT4 Indicator requests and ideas
2415Make sure you have allowl dll imports checked on your platform and you need the dynamic zone dll file in your mq4/libraries foldersergtradingfx 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
Re: MT4 Indicator requests and ideas
2416Thank you very much Mr tools!! i was missing the .dll file.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
Re: MT4 Indicator requests and ideas
2418Hi, is it possible to have a Moving Average (EMA) with dots, just like this RSI:
Re: MT4 Indicator requests and ideas
2419yes 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.
put on chart the standard moving average and with the same values add "ma dots" to your chart.
Re: MT4 Indicator requests and ideas
2420baraozemo 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.