Who makes the best stochastic oscillator indicator for metatrader 4? - page 2

 
mrtools:
SebastionK there is one here; https://www.mql5.com/en/forum/180002/page35

Thanks you mrtools!

 
mrtools:
SebastionK there is one here; https://www.mql5.com/en/forum/180002/page35

That looks promising. Thanks

 

You might want to check this one too : https://www.mql5.com/en/forum/general

Files:
 
mladen:
You might want to check this one too : https://www.mql5.com/en/forum/general

That one is good ...

 

Hello fellows

I found this interesting indicator but it's too good not to be repainting.

stochastic_digital_kahler_v20c.ex4

Can anyone confirm or deny that?

Thank you

Ricardo

 
Pipsycho:
Hello fellows

I found this interesting indicator but it's too good not to be repainting.

stochastic_digital_kahler_v20c.ex4

Can anyone confirm or deny that?

Thank you

Ricardo

Ricardo

It does not repaint

 

Thank you very much Mladen for your prompt answer

 
Pipsycho:
Thank you very much Mladen for your prompt answer

Ricardo

If you can read German, than this is a useful link to check (with detailed description how it works) : http://www.quanttrader.ddns.net/inde...lerPhilipp2015

Or read this document (in English) : Kahler digital stochastic.pdf

The code goes like this (no room for repainting, and, as you can see, is quite simple)

Meta:

Synopsis( "Digitale Stochastic - (c)2008 kahler@... - Info: Trader`s 08/2008" ),

SubChart( True ),

WebLink( "http://www.quanttrader.at" );

Inputs:

PeriodStoch( 5, 1 ),

PeriodSmoothing1( 3, 1 ),

PeriodSmoothing2( 3, 1 ),

OverBought( 80, 0, 100 ),

OverSold( 20, 0, 100 ),

background(false),

bull(green),

bear(red);

Variables:

fast_k( 0 ),

slow_k( 0 ),

slow_d( 0 ),

summ,

colour,

dstoch;

{ Berechnung fast_k, slow_k }

StochasticNormal( High, Low, Close, PeriodStoch, PeriodSmoothing1,

PeriodSmoothing2, fast_k, slow_k, slow_d );

{ Digitalisierung }

if (22*slow_k+8*fast_k)/30 >50 then summ=1;

if (22*slow_k+8*fast_k)/30 <50 then summ=-1;

Dstoch=xaverage(summ,periodStoch);

{ Darstellung }

if not(background) then DrawLine(Dstoch, "digitale Stochastic" );

if background then begin

if dstoch>dstoch[1] or dstoch=1 then colour=bull else colour=bear;

drawarea(-1,1,"-1","1",colour);

end;
 

Here is a stochastic digital Kahler that is made exactly the way how Kahler pseudo code is doing it (there are some small differences) : stochastic digital Kahler.mq4

 
mladen:
Here is a stochastic digital Kahler that is made exactly the way how Kahler pseudo code is doing it (there are some small differences) : stochastic digital Kahler.mq4

Hey, thanks Mladen.

I already tested the other version and I like this stoch.

With the lines it's even better for me, could you please add the 'line width feature', I find that very easy for me if I have to change my templates.

MERCI !