Re: MT4 Indicators with alerts/signals

3911
RodrigoRT7 wrote: Thu Jun 16, 2022 12:41 am Hello, how are you? are you trying to use this indicator on some specific stocks? If you allow me to suggest Teletrade, Vantage and BDSwizz provide stock CFD on MT4 (including what I'm using at the moment). with this you can use the indicators in MT4
Hello RodrigoRT7
i trade only pairs
thank you sir
These users thanked the author Milad8732 for the post:
RodrigoRT7
NOT MANUAL , NOT AUTOMATE , MORE




Re: MT4 Indicators with alerts/signals

3916
James10 wrote: Sat Jun 25, 2022 2:54 am Hello Mr.Tools, thank you for this Supertrend MTF indicator, do you have it the same MTF with arrows as .mq5 version? If not, could you please make it? It can be useful for many....Thank you.
Hi,

Attached are few ones, see this if they are useful to you.

Thanks

Re: MT4 Indicators with alerts/signals

3917
thomdel wrote: Sat Jun 25, 2022 3:46 am Hi,

Attached are few ones, see this if they are useful to you.

Thanks

Thank you, but this one it's not MTF and it uses CCI, I need this other type of calculation (code below). Also the other is only ex5, I need source code, as the MT4 version has been firstly published as source code....

Code: Select all

 for(int i = limit; i >= 0; i--)
   {
      int y = iBarShift(NULL,TimeFrame,Time[i]);
         double atr    = iATR(NULL,TimeFrame,period,y);
         double cprice = iMA(NULL,TimeFrame,1,0,MODE_SMA,appliedPrice,y);
         double mprice = (iHigh(NULL,TimeFrame,y)+iLow(NULL,TimeFrame,y))/2;
                Up[i]  = mprice+multiplier*atr;
                Dn[i]  = mprice-multiplier*atr;
         
         Direction[i] = Direction[i+1];
            if (cprice > Up[i+1]) Direction[i] =  1;
            if (cprice < Dn[i+1]) Direction[i] = -1;
         TrendDoA[i] = EMPTY_VALUE;
         TrendDoB[i] = EMPTY_VALUE;
            if (Direction[i] > 0) { Dn[i] = MathMax(Dn[i],Dn[i+1]); Trend[i] = Dn[i]; }
            else                  { Up[i] = MathMin(Up[i],Up[i+1]); Trend[i] = Up[i]; }
            if (Direction[i] == 1)  TrendDoA[i] = 1; 
            if (Direction[i] ==-1)  TrendDoB[i] = 1; 
   }
   return(0);
}


Who is online

Users browsing this forum: Abdi, Amazon [Bot], bypy, ChatGPT [Bot], Grapeshot [Bot], Lwqa, PaperLi [Bot], Proximic [Bot], Seznam [Bot], Trendiction [Bot], WhatsApp [Bot] and 91 guests