Page 392 of 429

Re: MT4 Indicators with alerts/signals

Posted: Thu Jun 16, 2022 2:48 am
by Milad8732
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

Re: MT4 Indicators with alerts/signals

Posted: Thu Jun 16, 2022 11:28 pm
by egg
mrtools wrote: Mon Feb 20, 2017 8:25 pm CHMelih, added the lines.

 
Image
Dear mrtools,
Please add on-off lines and arrow like above picture for this indicator, and make the alarm sound can be costumized.
Thank you in advance.
Rdgs,

Re: MT4 Indicators with alerts/signals

Posted: Fri Jun 17, 2022 2:41 am
by mrtools
egg wrote: Thu Jun 16, 2022 11:28 pm Dear mrtools,
Please add on-off lines and arrow like above picture for this indicator, and make the alarm sound can be costumized.
Thank you in advance.
Rdgs,
Added lines and the customized sound.

Re: MT4 Indicators with alerts/signals

Posted: Fri Jun 17, 2022 6:42 am
by egg
mrtools wrote: Fri Jun 17, 2022 2:41 am Added lines and the customized sound.
Image
Thank you so much, mrtools :D
Since I am using this indi as an alert for taking profit, could you please make a small modification so alerts appear when price cross from upper to lower ob, and from lower to upper os like below picture.

Regards,

Re: MT4 Indicators with alerts/signals

Posted: Sat Jun 25, 2022 2:54 am
by James10
mrtools wrote: Wed Oct 24, 2018 11:12 pm Added the arrow and alert options.
Image
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.

Re: MT4 Indicators with alerts/signals

Posted: Sat Jun 25, 2022 3:46 am
by thomdel
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

Posted: Sat Jun 25, 2022 6:06 am
by James10
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);
}

Re: MT4 Indicators with alerts/signals

Posted: Thu Jun 30, 2022 4:16 am
by Intrest 1
Hi guys.
Could you correct the signals of this indicator?
They are not removed from the chart when switching timeframes and remain on the chart quite chaotically from different timeframes

Re: MT4 Indicators with alerts/signals

Posted: Thu Jun 30, 2022 5:54 am
by mrtools
Intrest 1 wrote: Thu Jun 30, 2022 4:16 am Hi guys.
Could you correct the signals of this indicator?
They are not removed from the chart when switching timeframes and remain on the chart quite chaotically from different timeframes
Would need a non-decompiled version.

Re: MT4 Indicators with alerts/signals

Posted: Fri Jul 01, 2022 3:39 am
by Intrest 1
mrtools wrote: Thu Jun 30, 2022 5:54 am Would need a non-decompiled version.
Excuse me, I don't know how to distinguish decompiled code from normal