Re: MT4 Indicator requests and ideas

4651
FBI wrote: Wed Nov 14, 2018 5:51 am

viewtopic.php?p=1295381806#p1295381806

You can see it in that picture. and in that picture indi settings is "too fast". It is always "kiss and goodbye".
and when you have 2 or 3 "kiss and goodbye", then that is it, and if not, continue to sell/buy in right direction.
yes rightly said it shows well convergence and divergences of prices as we need to see it while trading.

as you said it is always like that maximum convergence- kiss and divergence-goodbye again on prices. it is this kisses that provides good trading opportunities with less risk potential.


Re: MT4 Indicator requests and ideas

4652
mntiwana wrote: Tue Nov 13, 2018 3:39 am Dearest mrtools
Can you please manage time some upgrading this funny toy "EMAVFS channel"
regarding some 9 methods and latest prices,i means the blue/deep pink lines only (band) - not the center line gold line
all i want experiment to smooth it,may be some smoothing factor too,it clearly form up/down trend when either color line riding on price line
this is the one that indicator,capable working with both mt4/mt5 terminal equally simply by changing extension
regards
Is there also anyway to add an alert when the bands move a certain distance away from the middle line?
Attachments

Re: MT4 Indicator requests and ideas

4653
FBI wrote: Wed Nov 14, 2018 5:51 am

You can see it in that picture. and in that picture indi settings is "too fast". It is always "kiss and goodbye".
and when you have 2 or 3 "kiss and goodbye", then that is it, and if not, continue to sell/buy in right direction.
mntiwana wrote: Tue Nov 13, 2018 3:39 am Dearest mrtools
Can you please manage time some upgrading this funny toy "EMAVFS channel"
regarding some 9 methods and latest prices,i means the blue/deep pink lines only (band)
regards
FBI, which vma-settings do you prefer?
The "EMAVFS channel" opens this russian pdf with formulas, if you click on author Bulasev on options > about. A kind of smoothed ema with ma of lows/highs bands maybe could help.

Re: MT4 Indicator requests and ideas

4655
friend4you wrote: Wed Nov 14, 2018 11:09 pm



FBI, which vma-settings do you prefer?
The "EMAVFS channel" opens this russian pdf with formulas, if you click on author Bulasev on options > about. A kind of smoothed ema with ma of lows/highs bands maybe could help.
EMAVFS.pdf
I think it is the "smoothed ema" (yellow center line - not the bands)
Indicator is just a tool.

Use it only if it can benefit you. Leave it if you don't know how to use it optimally.


Re: MT4 Indicator requests and ideas

4656
Steam1 wrote: Thu Nov 15, 2018 1:29 am Hi MrTools, Can you please check Dynamic zones trend scalp 2.1 to see if Filters can be added to price, signal and t3 period. If not a smoothing filter
Thanks for your time
Looks like TTF (trend trigger factor on T3 and applied DZ)
Indicator is just a tool.

Use it only if it can benefit you. Leave it if you don't know how to use it optimally.

Re: MT4 Indicator requests and ideas

4657
mntiwana wrote: Tue Nov 13, 2018 3:39 am Dearest mrtools
Can you please manage time some upgrading this funny toy "EMAVFS channel"
regarding some 9 methods and latest prices,i means the blue/deep pink lines only (band) - not the center line gold line
all i want experiment to smooth it,may be some smoothing factor too,it clearly form up/down trend when either color line riding on price line
this is the one that indicator,capable working with both mt4/mt5 terminal equally simply by changing extension
regards
Would need the source code.

Re: MT4 Indicator requests and ideas

4658
I am not sure if it this, maybe not

Code: Select all

//| Stat-Arbitrage Indicator.mq4 |
//| Ilya Kiselev, JIBS |
//+-------------------------------------------------------
#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color2 Yellow
#property indicator_color3 Blue
#property indicator_color4 Red
extern double T=8;
extern int porog_E =10;
double H1, L1, A1, H2, L2, A2, H3, L3, A3, T_half, Zt, Wt;
//---- buffers
double ExtMapBuffer1[];
double Signal[];
double Up[];
double Dn[];
double Fl[];
//+-------------------------------------------------------
//| Custom indicator initialization function |
//+-------------------------------------------------------
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_NONE);
SetIndexDrawBegin(0,0);
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexStyle(1,DRAW_LINE);
SetIndexDrawBegin(1,0);
SetIndexBuffer(1,Fl);
SetIndexStyle(2,DRAW_LINE);
SetIndexDrawBegin(2,0);
SetIndexBuffer(2,Up);
SetIndexStyle(3,DRAW_LINE);
SetIndexDrawBegin(3,0);
SetIndexBuffer(3,Dn);
IndicatorShortName("Indicator EMAVFS");
//return;
}
//+-------------------------------------------------------
//| Custom indicator iteration function |
//+-------------------------------------------------------
int start()
{
int i;
int Indicator_Counted=IndicatorCounted();
int limit=Bars-Indicator_Counted;
T_half = T/2;
//----
for ( i=limit;i>=0;i--)
{
H1=High[iHighest(NULL,0,MODE_HIGH, T_half, i)];
L1=Low[iLowest(NULL,0,MODE_LOW, T_half, i)];
A1 = H1-L1;
H2=High[iHighest(NULL,0,MODE_HIGH, T, i+T_half)];
L2=Low[iLowest(NULL,0,MODE_LOW, T, i+T_half)];
A2 = H2-L2;
H3=High[iHighest(NULL,0,MODE_HIGH, T, i)];
L3=Low[iLowest(NULL,0,MODE_LOW, T, i)];
A3 = H3-L3;
Zt = (MathAbs(Close[i]-ExtMapBuffer1[i+1]))/porog_E;
if ((Zt<=1) && (Zt>=0))
{
Wt = 0.5 * (1 - MathSqrt(1 - Zt*Zt));
}
else
if (Zt>1)
{
Wt = 0.5 * (1 + MathSqrt(1 - 1/(Zt*Zt)));
}
ExtMapBuffer1[i] = Wt*Close[i] + (Wt)*ExtMapBuffer1[i+1];
if(MathAbs(ExtMapBuffer1[i]-ExtMapBuffer1[i+1])
>=porog_E*Point)
{
if(i>0)
{
if(Close[i]<=ExtMapBuffer1[i])
{
Dn[i]=ExtMapBuffer1[i];
}
else
{
Fl[i]=ExtMapBuffer1[i];
}
if(Close[i] >=ExtMapBuffer1[i])
{
Up[i]=ExtMapBuffer1[i];
}
else
{
Fl[i]=ExtMapBuffer1[i];
}
}
else
{
Fl[i]=ExtMapBuffer1[i];
}
}
else
{
ExtMapBuffer1[i]=ExtMapBuffer1[i+1];
Fl[i]=ExtMapBuffer1[i];
}
}
return(0);
}


Who is online

Users browsing this forum: Amazon [Bot], Banzai, bbookgenius, ChatGPT [Bot], Google [Bot], IBM oBot [Bot], Lwqa, Seznam [Bot], Sogou [Bot], WhatsApp [Bot] and 32 guests