Posted it here..... viewtopic.php?p=1295476903#p1295476903sal 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 !!!
Re: MT4 Indicator requests and ideas
15422
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
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
15423Sorry but that indicator is decompiled.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
Re: MT4 Indicator requests and ideas
15424Can 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
15425experts coders
possible to make arrows when upper green FRACTAL channel breaks red channel below next bearish bar ----- down & for up arrow just opposite.
possible to make arrows when upper green FRACTAL channel breaks red channel below next bearish bar ----- down & for up arrow just opposite.
"There is NO GOD higher than TRUTH" - Mahatma Gandhi
Re: MT4 Indicator requests and ideas
15426dear 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
15427Looks like it's a decompiled and repainting 3x21 ema cross, we have many different ma crosses here in the forum.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 .
Re: MT4 Indicator requests and ideas
15428dear 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 alotmrtools 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.
Re: MT4 Indicator requests and ideas
15429It repaints, which is clearly seen in this code: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
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);
Re: MT4 Indicator requests and ideas
15430Can someone help to make indicators according to the criteria in the picture below .... Especially for Mladen and Mrtools .... For the help I thank you