Re: MT4 Indicator requests and ideas

15425
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

15427
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

15428
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

15430
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.
These users thanked the author wojtek for the post (total 3):
xzerax, Jedidiah, Jimmy


Who is online

Users browsing this forum: Amazon [Bot], Banzai, DotNetDotCom [Bot], FXSurf, IBM oBot [Bot], kvak, Leica11, Nanyuki, Narutopips, Proximic [Bot], pytason and 73 guests