Page 9 of 10

Re: NMC (New Metatrader 4) Compatible indicators thread

Posted: Wed Sep 05, 2018 11:22 am
by YeshuaYoke
mrtools wrote: Wed Aug 29, 2018 10:47 pm

It's probably the build 1090 issue check here
viewtopic.php?p=1295355596#p1295355596

or you can on lines 43,44,and 45 after the SetIndexBuffer's add

Code: Select all

SetIndexStyle(0,DRAW_LINE); 
 SetIndexStyle(1,DRAW_LINE); 
 SetIndexStyle(2,DRAW_LINE); 
hello MR Tools, thankyou MNTIWANA mr tools kreilan, im going to try and be more active on the forums contribute and not ask so much

Re: NMC (New Metatrader 4) Compatible indicators thread

Posted: Sun Sep 29, 2019 9:33 pm
by moey_dw
plz could somone help make it nmc this mama of macd??? :(

Re: NMC (New Metatrader 4) Compatible indicators thread

Posted: Sun Sep 29, 2019 9:40 pm
by Jimmy
moey_dw wrote: Sun Sep 29, 2019 9:33 pm plz could somone help make it nmc this mama of macd??? :(
Fixed and posted here: Mesa Adaptive Moving Average MACD for MT4 :)

Re: NMC (New Metatrader 4) Compatible indicators thread

Posted: Sun Sep 29, 2019 9:43 pm
by moey_dw
Jimmy wrote: Sun Sep 29, 2019 9:40 pm Fixed and posted here: Mesa Adaptive Moving Average MACD for MT4 :)
how u do that!!!!!!!!

Re: NMC (New Metatrader 4) Compatible indicators thread

Posted: Sun Sep 29, 2019 9:53 pm
by Jimmy
moey_dw wrote: Sun Sep 29, 2019 9:43 pm how u do that!!!!!!!!

For this particular code, replace all "char" with "tchar" from line 447 down:

Code: Select all

string StringUpperCase(string str)
{
   string   s = str;

   for (int length=StringLen(str)-1; length>=0; length--)
   {
      int char = StringGetChar(s, length);
         if((char > 96 && char < 123) || (char > 223 && char < 256))
                     s = StringSetChar(s, length, char - 32);
         else if(char > -33 && char < 0)
                     s = StringSetChar(s, length, char + 224);
   }
   return(s);
}

Replaced with

Code: Select all

string StringUpperCase(string str)
{
   string   s = str;

   for (int length=StringLen(str)-1; length>=0; length--)
   {
      int tchar = StringGetChar(s, length);
         if((tchar > 96 && tchar < 123) || (tchar > 223 && tchar < 256))
                     s = StringSetChar(s, length, tchar - 32);
         else if(tchar > -33 && tchar < 0)
                     s = StringSetChar(s, length, tchar + 224);
   }
   return(s);
}     

Re: NMC (New Metatrader 4) Compatible indicators thread

Posted: Tue Nov 05, 2019 7:33 pm
by Eka
Dear mrtools please help...
It's are scrip or EA ? and please make it work on new MT4
Thank

Re: NMC (New Metatrader 4) Compatible indicators thread

Posted: Wed Nov 06, 2019 3:13 am
by mrtools
Eka wrote: Tue Nov 05, 2019 7:33 pm Dear mrtools please help...
It's are scrip or EA ? and please make it work on new MT4
Thank
It's a scrip and it should already work on new mt4.

Re: NMC (New Metatrader 4) Compatible indicators thread

Posted: Thu Nov 07, 2019 3:55 am
by Eka
mrtools wrote: Wed Nov 06, 2019 3:13 am

It's a scrip and it should already work on new mt4.
so sorry to bothering you sir and Thank you so much

Re: NMC (New Metatrader 4) Compatible indicators thread

Posted: Thu Nov 07, 2019 5:16 am
by mrtools
Eka wrote: Thu Nov 07, 2019 3:55 am
so sorry to bothering you sir and Thank you so much
No bother and you are welcome.

Re: NMC (New Metatrader 4) Compatible indicators thread

Posted: Wed Jan 15, 2020 2:33 am
by batsman87
Hello coders. I would like to have this indicator made NMC. Thanks