Page 126 of 180

Re: Coding Help

Posted: Wed Jul 07, 2021 9:36 pm
by Ogee
mecca wrote: Wed Jul 07, 2021 8:50 pm @Ogee

Hi please i would highly appreciate your help.
Hi, afraid that is beyond my coding skills but hopefully one of the real coders will be able to help out.

Re: Coding Help

Posted: Wed Jul 07, 2021 11:52 pm
by mecca
Ogee wrote: Wed Jul 07, 2021 9:36 pm Hi, afraid that is beyond my coding skills but hopefully one of the real coders will be able to help out.
How about ignoring my previous request and just convert the mq4 to mq5.
if you can only covert ZZ_H1v2.1c.mq4 to mt5 it is fine with me

Re: Coding Help

Posted: Wed Jul 14, 2021 4:46 pm
by mancangkul
Dear Mladen...can u put this indicator in separate windows

thank u

Re: Coding Help

Posted: Wed Jul 14, 2021 6:05 pm
by scdihan
Dear Coders.

Please help to add mobile push notifications to this indicator

Really appreciate it. <3

Thank you very much in advance

Re: Coding Help

Posted: Thu Jul 22, 2021 5:33 pm
by HiFiCoder
Solved !!

Re: Coding Help

Posted: Thu Jul 22, 2021 5:43 pm
by mrtools
HiFiCoder wrote: Thu Jul 22, 2021 5:33 pm

Code: Select all

double Reat_MFI(int TmF,string symbs)
  {
   double MFI[];
    ArraySetAsSeries(MFI,true);
    
    
     int handle_iMFI=iMFI(symbs,TmF,22,0);
//--- if the handle is not created 
   if(handle_iMFI==INVALID_HANDLE)
     {
      PrintFormat("Failed to create the handle of the iMFI indicator for the symbol %s/%s, error code %d",                                 
                  GetLastError());
      
      return(INIT_FAILED);
     }   
    
   ResetLastError();
   if(CopyBuffer(handle_iMFI,0,0,1,MFI)<0)
     {
      PrintFormat("Failed to copy data from the iMFI indicator, error code %d",GetLastError());
      return(EMPTY_VALUE);
     }
   return(MFI[0]);
  }
How can i solve this issue in Mql5?
Not seeing the whole code, would guess maybe change TmF to period or something like that.

Re: Coding Help

Posted: Thu Jul 22, 2021 5:54 pm
by HiFiCoder
mrtools wrote: Thu Jul 22, 2021 5:43 pm Not seeing the whole code, would guess maybe change TmF to period or something like that.
Problem is that when I try to pass int type value its says ENUM type cant convert to int !! mql4 is ok but mql5 is getting issues. Shown in Image.

Re: Coding Help

Posted: Thu Jul 22, 2021 6:35 pm
by HiFiCoder
mrtools wrote: Thu Jul 22, 2021 5:43 pm Not seeing the whole code, would guess maybe change TmF to period or something like that.
Issue solved !!

Re: Coding Help

Posted: Tue Jul 27, 2021 5:09 am
by Siya14nga
Hi MrTools can i request a little something about the indicator below i want the Moving averages when they cross arrow should appear not to appear only on extreme zones but when the MA's cross the indicator should give a arrows signal please

Re: Coding Help

Posted: Tue Jul 27, 2021 4:10 pm
by scdihan
Siya14nga wrote: Tue Jul 27, 2021 5:09 am Hi MrTools can i request a little something about the indicator below i want the Moving averages when they cross arrow should appear not to appear only on extreme zones but when the MA's cross the indicator should give a arrows signal please
Isnt this a repainting indicator?? signals are too good to be true.