Page 13 of 27

Re: Fix: Indicator is not showing on MT4 chart

Posted: Mon Nov 25, 2019 7:22 pm
by lesh
Please fix indicators in the attached file, all 3 of them cannot attach to chart

Re: Fix: Indicator is not showing on MT4 chart

Posted: Tue Dec 03, 2019 2:30 pm
by egg
Dear Coders,
This indicator doesn't show up in my MT4.
Could you please fix it? Thank you.

Re: Fix: Indicator is not showing on MT4 chart

Posted: Sat Dec 14, 2019 11:30 pm
by ilegalc
is it possible to look into these because i would love to try it out but it dosnt show on the chart
app.php/attach/file/3315903

Re: Fix: Indicator is not showing on MT4 chart

Posted: Sun Dec 15, 2019 12:39 am
by Jimmy
ilegalc wrote: Sat Dec 14, 2019 11:30 pm is it possible to look into these because i would love to try it out but it dosnt show on the chart
app.php/attach/file/3315903
Do you have the Dynamic Zone .dll for MT4 installed? It is required for all "DZ" and "DDZ" type of indicators.

If you're new to indicators that require .dll use, please also see here: Why .dll files are required for some MT4 indicators.

Re: Fix: Indicator is not showing on MT4 chart

Posted: Sat Dec 28, 2019 9:32 pm
by theCuchuoi
Can someone please help me with this indicator, it doesn't reload itself when plugged into strategy tester unless I open up the settings window and close it back down again.
I'm using MT4 4.0 build 1220.
Thanks

Re: Fix: Indicator is not showing on MT4 chart

Posted: Sun Dec 29, 2019 9:14 am
by kingzboleto
hi dear its my first time in that forum
sorry if i put a comment not in the right place but i need to make one mt4 indicator to MTF
so if im in the right place i will post the indicator if im not show me where
kind regarding

Re: Fix: Indicator is not showing on MT4 chart

Posted: Sun Dec 29, 2019 9:27 am
by mladen
theCuchuoi wrote: Sat Dec 28, 2019 9:32 pm Can someone please help me with this indicator, it doesn't reload itself when plugged into strategy tester unless I open up the settings window and close it back down again.
I'm using MT4 4.0 build 1220.
Thanks
This part :

Code: Select all

      double bandL=iBands(Symbol(),0,bPer,bDev,0,PRICE_CLOSE,MODE_MINUSDI,i);
      double bandH=iBands(Symbol(),0,bPer,bDev,0,PRICE_CLOSE,MODE_PLUSDI,i);
Using MODE_MINUSDI and MODE_PLUSDI in a call to iBands() does not make any sense at all (those constants should be used for ADX not for bands) and even though (simply by chance) it works, you should probably use some other indicator instead (not just because of the upper two lines of code)

Re: Fix: Indicator is not showing on MT4 chart

Posted: Sun Dec 29, 2019 1:07 pm
by mrtools
theCuchuoi wrote: Sat Dec 28, 2019 9:32 pm Can someone please help me with this indicator, it doesn't reload itself when plugged into strategy tester unless I open up the settings window and close it back down again.
I'm using MT4 4.0 build 1220.
Thanks
Try this version, like Mladen said it was using adx modes instead of band modes, this should work, but not able to verify, so please verify for me.

Re: Fix: Indicator is not showing on MT4 chart

Posted: Sun Dec 29, 2019 5:00 pm
by theCuchuoi
mrtools wrote: Sun Dec 29, 2019 1:07 pm

Try this version, like Mladen said it was using adx modes instead of band modes, this should work, but not able to verify, so please verify for me.
It still doesn't work in tester, but I think I should go with Mladen's advice. Thank you for your time, good day

Re: Fix: Indicator is not showing on MT4 chart

Posted: Sun Dec 29, 2019 6:20 pm
by mrtools
kingzboleto wrote: Sun Dec 29, 2019 9:14 am hi dear its my first time in that forum
sorry if i put a comment not in the right place but i need to make one mt4 indicator to MTF
so if im in the right place i will post the indicator if im not show me where
kind regarding
Welcome here, you can post it here on this thread viewtopic.php?p=1294827721#p1294827721 and hopefully someone will help you.