Re: MT4 Indicator requests and ideas

7013
MaxTorque wrote: Fri Jul 19, 2019 1:55 am Hello,

Does anyone know an Indicator similar to this one (Essam) but without repainting ?

Would be very helpful.
Try this one bro..just focus on the blue line crossing the zero line. You need to add the zero line.
I've also added the tma slope nrp..just add the zero line as well. enter your trades when crossing the zero line.

regards,


Re: MT4 Indicator requests and ideas

7017
talaate wrote: Sun Sep 29, 2019 4:34 am Hi mrtools
Is the attached indicator is repainting?
Please if not, would add push and mail notifications alerts and also if possible let the histobar on the upper level becomes red and the other one on the lower level becomes blue
Thanks
Vostro_Scalping 1.02.mq4
The alerts themselves repaint, would imagine the rest does too.

Re: MT4 Indicator requests and ideas

7020
Dear MrTools and coders,

What does this part of the the code calculates?As far as I understand it counts some sort of high low bars , is that right?

Code: Select all

//Calculations of Alogrithm Equations

int deinit() {
   return (0);
}

int start() {
   if (Scalping == TRUE) ScalpingPeriod01 = 100;
   else ScalpingPeriod01 = 300;
   
   Bars_Counted = IndicatorCounted();
   if (Bars_Counted < 0) return (-1);
   if (Bars_Counted > 0) Bars_Counted--;
   int Rest_Bars = Bars + 1 - Bars_Counted;
   
   for (index = 0; index < Rest_Bars; index++) {
      Const01 = 0;
      for (Const04 = index; Const04 < K + index; Const04++) Const01 += (High[Const04] + Low[Const04]) / 2.0;
          Const02 = Const01 / K;
          
          Const01 = 0;
      for (Const04 = index; Const04 < K + index; Const04++) Const01 += High[Const04] - Low[Const04];
          Const03 = 0.2 * (Const01 / K);
             Low_Level[index] = (Low[index] - Const02) / Const03;
             High_Level[index] = (High[index] - Const02) / Const03;
             
      if (High_Level[index] > 8.0 && High[index] > iMA(NULL, 0, ScalpingPeriod01, 0, MODE_LWMA, PRICE_MEDIAN, index)) {
	               Indicator_Buffer[index] = 90.0;
              }
              else {
      if (Low_Level[index] < -8.0 && Low[index] < iMA(NULL, 0, ScalpingPeriod01, 0, MODE_LWMA, PRICE_MEDIAN, index)) {
	               Indicator_Buffer[index] = -90.0;
                }
                else Indicator_Buffer[index] = 0.0;
              }


Who is online

Users browsing this forum: Abdi, ChatGPT [Bot], Grapeshot [Bot], Ruby [Bot], slnimantha, Spazmus and 87 guests