Page 1543 of 2042

Re: MT4 Indicator requests and ideas

Posted: Sat May 07, 2022 11:36 pm
by jonnyfx4711
Can this indicator be modified so that it can show selected number of time frame ( like 5M,15M,1h, 4h etc) evenly spaced in one box like in the pic below?

Re: MT4 Indicator requests and ideas

Posted: Sun May 08, 2022 12:27 am
by kvak
sal wrote: Sun May 01, 2022 9:49 pm hello traders
any one know/have RSI DIP BUYER INDICATOR in MT4 ??
see snap RSI with Colour historgram
i think colour historgram is SMA 100 !!!
Posted it here..... viewtopic.php?p=1295476903#p1295476903

Re: MT4 Indicator requests and ideas

Posted: Sun May 08, 2022 11:33 am
by tienvip123bee
this is the indicator i found

but it doesn't warn on mt4 every time buy/sell entry appears

please help me : add alert in this indicator

thank you very much

Re: MT4 Indicator requests and ideas

Posted: Sun May 08, 2022 12:01 pm
by mrtools
tienvip123bee wrote: Sun May 08, 2022 11:33 am this is the indicator i found

but it doesn't warn on mt4 every time buy/sell entry appears

please help me : add alert in this indicator

thank you very much
Sorry but that indicator is decompiled.

Re: MT4 Indicator requests and ideas

Posted: Mon May 09, 2022 12:12 am
by 太虚一毫
kvak wrote: Sun May 08, 2022 12:27 am Posted it here..... viewtopic.php?p=1295476903#p1295476903


Can the fractals of the shved_supply_and_demand BT, Support Resistance MMM BT3 and Fractal channel breakout indicators use the same formula and parameters?

In other words, can the fractal_fast_factor and fractal_slow_factor in the indicators such as shved_supply_and_demand BT and Support Resistance MMM BT3 be used in the Fractal channel breakout indicator?

extern double fractal_fast_factor = 3.0;
extern double fractal_slow_factor = 6.0;


It will be interesting to believe that the Support Resistance is integrated with the Fractal channel breakout indicator.

Re: MT4 Indicator requests and ideas

Posted: Mon May 09, 2022 1:29 am
by sal
experts coders
possible to make arrows when upper green FRACTAL channel breaks red channel below next bearish bar ----- down & for up arrow just opposite.

Re: MT4 Indicator requests and ideas

Posted: Tue May 10, 2022 5:59 am
by xzerax
dear coders please help me with this simple indicator ... the problem is that indicator is find and arrows are one arrow for each signal just like any arrow indicator ...problem is when chart keep moving after a while arrows start to appear after each other in rotation with first arrow .. for example a red arrow appear after a while more arrows appear after it on each bar until green one appear and than green arrows keep getting printed until red one appear ... can we fix this as it make my head spin and makes it harder ... thank you very much in advance .

Re: MT4 Indicator requests and ideas

Posted: Tue May 10, 2022 6:03 am
by mrtools
xzerax wrote: Tue May 10, 2022 5:59 am dear coders please help me with this simple indicator ... the problem is that indicator is find and arrows are one arrow for each signal just like any arrow indicator ...problem is when chart keep moving after a while arrows start to appear after each other in rotation with first arrow .. for example a red arrow appear after a while more arrows appear after it on each bar until green one appear and than green arrows keep getting printed until red one appear ... can we fix this as it make my head spin and makes it harder ... thank you very much in advance .
Image

Image
Looks like it's a decompiled and repainting 3x21 ema cross, we have many different ma crosses here in the forum.

Re: MT4 Indicator requests and ideas

Posted: Tue May 10, 2022 6:32 am
by xzerax
mrtools wrote: Tue May 10, 2022 6:03 am Looks like it's a decompiled and repainting 3x21 ema cross, we have many different ma crosses here in the forum.
dear mr.tools it doesnt repaint as i have backtested it but nice to know that it is just an ema cross over .. will try one from the forum ..thanks alot

Re: MT4 Indicator requests and ideas

Posted: Tue May 10, 2022 6:56 am
by wojtek
xzerax wrote: Tue May 10, 2022 6:32 am dear mr.tools it doesnt repaint as i have backtested it but nice to know that it is just an ema cross over .. will try one from the forum ..thanks alot
It repaints, which is clearly seen in this code:

Code: Select all

         ima_4 = iMA(NULL, 0, G_period_84, 0, MODE_EMA, PRICE_CLOSE, Li_88);
         ima_20 = iMA(NULL, 0, G_period_84, 0, MODE_EMA, PRICE_CLOSE, Li_88 + 1);
         ima_36 = iMA(NULL, 0, G_period_84, 0, MODE_EMA, PRICE_CLOSE, Li_88 - 1);
         ima_12 = iMA(NULL, 0, G_period_88, 0, MODE_EMA, PRICE_CLOSE, Li_88);
         ima_28 = iMA(NULL, 0, G_period_88, 0, MODE_EMA, PRICE_CLOSE, Li_88 + 1);
         ima_44 = iMA(NULL, 0, G_period_88, 0, MODE_EMA, PRICE_CLOSE, Li_88 - 1);


Removing repainting is easy in this case:

Code: Select all

         ima_4 = iMA(NULL, 0, G_period_84, 0, MODE_EMA, PRICE_CLOSE, Li_88 + 1);
         ima_20 = iMA(NULL, 0, G_period_84, 0, MODE_EMA, PRICE_CLOSE, Li_88 + 2);
         ima_36 = iMA(NULL, 0, G_period_84, 0, MODE_EMA, PRICE_CLOSE, Li_88);
         ima_12 = iMA(NULL, 0, G_period_88, 0, MODE_EMA, PRICE_CLOSE, Li_88 + 1);
         ima_28 = iMA(NULL, 0, G_period_88, 0, MODE_EMA, PRICE_CLOSE, Li_88 + 2);
         ima_44 = iMA(NULL, 0, G_period_88, 0, MODE_EMA, PRICE_CLOSE, Li_88);
This is a very popular indicator, circulating in countless versions in the net.