Elite indicators :) - page 67

 

thanks

thank you very much

 

price change alert

hello

I was looking for an indicator that alerts me when price moves certain pips within a given period of time

example : GBP/JPY moved 100 pips within the last 5 minutes

is there any such indicator

thank you

 
hazzoomah:
hello

I was looking for an indicator that alerts me when price moves certain pips within a given period of time

example : GBP/JPY moved 100 pips within the last 5 minutes

is there any such indicator

thank you

Just an idea. This one and set to MA 1?

 

cycle bar

Hello,

Came across the cycle bar indicator and found that it repaints on lower TF's - also noticed that if you switch from one tf to another on the same chart that the indicator put a bar in where there was none before.

Has this been your experience? Is there an updated version of this indy?

Thanks in advance

Lou

Loustar1@aol.com

 
pipmagnet:
Hello,

Came across the cycle bar indicator and found that it repaints on lower TF's - also noticed that if you switch from one tf to another on the same chart that the indicator put a bar in where there was none before.

Has this been your experience? Is there an updated version of this indy?

Thanks in advance

Lou

Loustar1@aol.com

Hello,

You mean this thread? https://www.mql5.com/en/forum/175550

Members posted on that thread the indicator repaints.

 
 
 
 

...

Mladen, thanks a million times.

Interesting expresion "imitation of approximation"

Actually, I was also thinking of adding internal smoothing

in the line of code which represents %FastK of MACD.

In pure stochastic oscillator this is done with summation but as I see

Doug Schaff omitted it.

Doug Schaff:

%K = 100*(MACD - MIN (LOWMACD, STCPeriod) / MAX (HIGHMACD, STCPeriod) - MIN (LOWMACD, STCPeriod)

Stochastic oscillator:

%K = 100*SUM (CLOSE - MIN (LOW, %KPeriods), Sk) / SUM (MAX (HIGH, %KPeriods) - MIN (LOW, %KPeriods)), Sk)

Sk means %K Slowing Period

I am again and again amazed how can such tweaks improve the originals.

For example your correction of T3 outperforms the "original" T3.

 

Helou:)

Thx Linuxser for sugestion:)) ,but tick indicator's are diffrent things.

I looking for indi,what have two lines-

-firstIs is sumary(or avarge) of volumen(tiks) at up bars in period ,for example,14 last bars ,

-second is sumary of volumen at down bars in period for example 18 last bars.

Diffrent between up and down bars is diffrent between (H+L)/2 (median price?).

///////////////////////////////////////////

mp=(H+L)/2;

Vup=iff(mp > ref(mp,-1) , volume , 0);

Vdn=iff(mp < ref(mp,-1) , volume , 0);

plot(Vup,"name",style_histogram,green);

plot(Vdn,"name",style_histogram,red);

//////////////////////////////////////////

That's all . Moving avarges I can take from idicators folder

This is simple with afl language.(amibroker)

Can anybody help me with this? I have make something ,what should work.

26.10

Files:
v-.mq4  3 kb
Reason: