Re: NMC (New Metatrader 4) Compatible indicators thread

81
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

83
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 :)
Are you looking for a Forex broker? FBS cuts spreads by up to 58%. Click here to begin your trading journey, today.
No commissions are earned by Forex-station.


Guide to the "All Averages" Filters (ADXvma, Laguerre etc.) 🆕
Use Fibonacci numbers for indicator settings + How to draw Fibonacci Extensions
An easy trick for drawing Support & Resistance

IdeaRe: NMC (New Metatrader 4) Compatible indicators thread

85
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);
}     
These users thanked the author Jimmy for the post:
moey_dw
Are you looking for a Forex broker? FBS cuts spreads by up to 58%. Click here to begin your trading journey, today.
No commissions are earned by Forex-station.


Guide to the "All Averages" Filters (ADXvma, Laguerre etc.) 🆕
Use Fibonacci numbers for indicator settings + How to draw Fibonacci Extensions
An easy trick for drawing Support & Resistance




Who is online

Users browsing this forum: kysbog, LUCAS123 and 95 guests