Page 702 of 2044

Re: MT4 Indicator requests and ideas

Posted: Sat Sep 28, 2019 11:05 pm
by Jimmy
pacois wrote: Sat Sep 28, 2019 6:09 pm Try!!
Wow Pac, that's super. We have featured it on our Social Media and Daily Downloads! :clap:

Re: MT4 Indicator requests and ideas

Posted: Sat Sep 28, 2019 11:07 pm
by moey_dw
pacois wrote: Sat Sep 28, 2019 6:09 pm Try!!
i <3 it................

Re: MT4 Indicator requests and ideas

Posted: Sun Sep 29, 2019 3:27 am
by aleqsei
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

Posted: Sun Sep 29, 2019 4:34 am
by talaate
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

Re: MT4 Indicator requests and ideas

Posted: Sun Sep 29, 2019 9:05 am
by uncle wong

Re: MT4 Indicator requests and ideas

Posted: Sun Sep 29, 2019 9:34 am
by talaate
uncle wong wrote: Sun Sep 29, 2019 9:05 am It looks like not bad strategy https://www.prorealcode.com/prorealtime ... ostro-vst/
But the codes look decompiled in this version !!!

Re: MT4 Indicator requests and ideas

Posted: Sun Sep 29, 2019 12:08 pm
by mrtools
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

Posted: Sun Sep 29, 2019 8:03 pm
by talaate
mrtools wrote: Sun Sep 29, 2019 12:08 pm

The alerts themselves repaint, would imagine the rest does too.
In this case forget the request, from the beginning I asked if the indicator repaint or not.
Thanks for warning

Re: MT4 Indicator requests and ideas

Posted: Sun Sep 29, 2019 8:23 pm
by uncle wong
talaate wrote: Sun Sep 29, 2019 9:34 am
But the codes look decompiled in this version !!!
It is a ProRealTime code ,it is not mql4 code!

Re: MT4 Indicator requests and ideas

Posted: Sun Sep 29, 2019 8:28 pm
by uncle wong
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;
              }